In this project, I outline a data-driven approach to assess mortgage risks, specifically focusing on flood risk. Leveraging geospatial data, I aim to provide a comprehensive analysis that aids lenders and investors in making informed decisions. This approach includes two perspectives: geocoding-based risk assessment and shapefile integration for enhanced spatial context. The project utilizes fictitious property data and advanced risk simulation techniques to deliver actionable insights into mortgage risk management.
##Introduction
###Background and Context
In the current financial landscape, accurate risk assessment is crucial for mortgage lenders and investors. Traditional methods often fail to consider environmental factors, such as flood risk, which can significantly impact property values and loan default rates. With climate change increasing the frequency and severity of flooding events, incorporating flood risk into mortgage assessments has become essential.
###Research Question
This project explores the following research question: "How can geospatial data be utilized to enhance mortgage risk assessments, particularly in relation to flood risk?" This question is pertinent as it addresses the need for a more comprehensive and data-driven approach to mortgage risk evaluation, which is increasingly relevant in today's climate-sensitive environment.
###Rationale
The proposed research question is a strong candidate for a data-driven solution due to the availability of geospatial and property data, the advancements in geocoding technologies, and the increasing necessity for environmental risk assessments in financial decision-making. By integrating geospatial analysis with mortgage data, (credit) risk officers, investors or regulators can provide a nuanced understanding of flood risks, offering significant value to stakeholders.
##Methods
###Data Sources
1. Property and Mortgage Data: Sample mortgage data including addresses, loan amounts, and property values. 2. Geospatial Data: Shapefiles representing geographical features and flood-prone areas: https://www.data.gov.uk/dataset/fc3df1e4-4eb4-4013-8bf2-300089857801/indicative-flood-risk-areas-communities-at-risk-data https://www.getthedata.com/flood-map-by-postcode https://www.rightmove.co.uk/house-prices/b17/osmaston-road.html
###Data Cleaning
1. Geocoding: Addresses were geocoded to obtain latitude and longitude coordinates. 2. Handling Missing Data: Properties with missing geocodes were flagged and reviewed to ensure data integrity.
###Analytical Methods
1. Flood Risk Simulation: A custom function simulates flood risk based on property type and proximity to water bodies, incorporating random variability. 2. Risk Classification: Flood risk scores are categorized into 'Low', 'Moderate', and 'High' risk levels. 3. Geospatial Visualization: Utilizes Folium to map properties and overlay shapefiles for enhanced spatial analysis.
import geopandas as gpd
# Specify the filepath to the shapefile directory
shapefile_dir = r'C:\Users\HP\Downloads\IndicativeFloodRiskAreas-SHP\data'
# Attempt to read the shapefile
try:
flood_zones = gpd.read_file(shapefile_dir)
# If successful, print the first few rows of the GeoDataFrame
print(flood_zones.head())
except Exception as e:
# If reading fails, print the error message
print("Error:", e)
easting northing gridsq numresp numpeople numkeys numnonresp \ 0 165500.0 27500.0 X165Y027 96 224.64 0 18 1 163500.0 39500.0 X163Y039 4 9.36 2 0 2 151500.0 40500.0 X151Y040 70 163.80 1 58 3 169500.0 41500.0 X169Y041 39 91.26 0 28 4 182500.0 44500.0 X182Y044 133 311.22 5 263 st_area_sh st_perimet geometry 0 1000000.0 4000.0 POLYGON ((166000.000 27000.000, 165000.000 270... 1 1000000.0 4000.0 POLYGON ((164000.000 39000.000, 163000.000 390... 2 1000000.0 4000.0 POLYGON ((152000.000 40000.000, 151000.000 400... 3 1000000.0 4000.0 POLYGON ((170000.000 41000.000, 169000.000 410... 4 1000000.0 4000.0 POLYGON ((183000.000 44000.000, 182000.000 440...
# Print the entire GeoJSON data to inspect its structure and contents
print("GeoJSON data:", flood_zones.to_json())
# Create a map centered around the mean easting and northing coordinates
m = folium.Map(location=[flood_zones["northing"].mean(), flood_zones["easting"].mean()], zoom_start=10)
# Add GeoJson layer for flood zones
folium.GeoJson(flood_zones).add_to(m)
# Display the map
m
GeoJSON data: {"type": "FeatureCollection", "features": [{"id": "0", "type": "Feature", "properties": {"easting": 165500.0, "northing": 27500.0, "gridsq": "X165Y027", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[166000.0, 27000.0], [165000.0, 27000.0], [165000.0, 28000.0], [166000.0, 28000.0], [166000.0, 27000.0]]]}}, {"id": "1", "type": "Feature", "properties": {"easting": 163500.0, "northing": 39500.0, "gridsq": "X163Y039", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[164000.0, 39000.0], [163000.0, 39000.0], [163000.0, 40000.0], [164000.0, 40000.0], [164000.0, 39000.0]]]}}, {"id": "2", "type": "Feature", "properties": {"easting": 151500.0, "northing": 40500.0, "gridsq": "X151Y040", "numresp": 70, "numpeople": 163.8, "numkeys": 1, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[152000.0, 40000.0], [151000.0, 40000.0], [151000.0, 41000.0], [152000.0, 41000.0], [152000.0, 40000.0]]]}}, {"id": "3", "type": "Feature", "properties": {"easting": 169500.0, "northing": 41500.0, "gridsq": "X169Y041", "numresp": 39, "numpeople": 91.26, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[170000.0, 41000.0], [169000.0, 41000.0], [169000.0, 42000.0], [170000.0, 42000.0], [170000.0, 41000.0]]]}}, {"id": "4", "type": "Feature", "properties": {"easting": 182500.0, "northing": 44500.0, "gridsq": "X182Y044", "numresp": 133, "numpeople": 311.22, "numkeys": 5, "numnonresp": 263, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[183000.0, 44000.0], [182000.0, 44000.0], [182000.0, 45000.0], [183000.0, 45000.0], [183000.0, 44000.0]]]}}, {"id": "5", "type": "Feature", "properties": {"easting": 201500.0, "northing": 44500.0, "gridsq": "X201Y044", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 80, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[202000.0, 44000.0], [201000.0, 44000.0], [201000.0, 45000.0], [202000.0, 45000.0], [202000.0, 44000.0]]]}}, {"id": "6", "type": "Feature", "properties": {"easting": 273500.0, "northing": 44500.0, "gridsq": "X273Y044", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[274000.0, 44000.0], [273000.0, 44000.0], [273000.0, 45000.0], [274000.0, 45000.0], [274000.0, 44000.0]]]}}, {"id": "7", "type": "Feature", "properties": {"easting": 165500.0, "northing": 45500.0, "gridsq": "X165Y045", "numresp": 41, "numpeople": 95.94, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[166000.0, 45000.0], [165000.0, 45000.0], [165000.0, 46000.0], [166000.0, 46000.0], [166000.0, 45000.0]]]}}, {"id": "8", "type": "Feature", "properties": {"easting": 199500.0, "northing": 50500.0, "gridsq": "X199Y050", "numresp": 23, "numpeople": 53.82, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[200000.0, 50000.0], [199000.0, 50000.0], [199000.0, 51000.0], [200000.0, 51000.0], [200000.0, 50000.0]]]}}, {"id": "9", "type": "Feature", "properties": {"easting": 220500.0, "northing": 50500.0, "gridsq": "X220Y050", "numresp": 36, "numpeople": 84.24, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[221000.0, 50000.0], [220000.0, 50000.0], [220000.0, 51000.0], [221000.0, 51000.0], [221000.0, 50000.0]]]}}, {"id": "10", "type": "Feature", "properties": {"easting": 212500.0, "northing": 51500.0, "gridsq": "X212Y051", "numresp": 28, "numpeople": 65.52, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[213000.0, 51000.0], [212000.0, 51000.0], [212000.0, 52000.0], [213000.0, 52000.0], [213000.0, 51000.0]]]}}, {"id": "11", "type": "Feature", "properties": {"easting": 287500.0, "northing": 51500.0, "gridsq": "X287Y051", "numresp": 127, "numpeople": 297.18, "numkeys": 4, "numnonresp": 86, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[288000.0, 51000.0], [287000.0, 51000.0], [287000.0, 52000.0], [288000.0, 52000.0], [288000.0, 51000.0]]]}}, {"id": "12", "type": "Feature", "properties": {"easting": 242500.0, "northing": 52500.0, "gridsq": "X242Y052", "numresp": 52, "numpeople": 121.68, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[243000.0, 52000.0], [242000.0, 52000.0], [242000.0, 53000.0], [243000.0, 53000.0], [243000.0, 52000.0]]]}}, {"id": "13", "type": "Feature", "properties": {"easting": 225500.0, "northing": 53500.0, "gridsq": "X225Y053", "numresp": 44, "numpeople": 102.96, "numkeys": 3, "numnonresp": 101, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[226000.0, 53000.0], [225000.0, 53000.0], [225000.0, 54000.0], [226000.0, 54000.0], [226000.0, 53000.0]]]}}, {"id": "14", "type": "Feature", "properties": {"easting": 251500.0, "northing": 53500.0, "gridsq": "X251Y053", "numresp": 54, "numpeople": 126.36, "numkeys": 3, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[252000.0, 53000.0], [251000.0, 53000.0], [251000.0, 54000.0], [252000.0, 54000.0], [252000.0, 53000.0]]]}}, {"id": "15", "type": "Feature", "properties": {"easting": 175500.0, "northing": 54500.0, "gridsq": "X175Y054", "numresp": 193, "numpeople": 451.62, "numkeys": 2, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[176000.0, 54000.0], [175000.0, 54000.0], [175000.0, 55000.0], [176000.0, 55000.0], [176000.0, 54000.0]]]}}, {"id": "16", "type": "Feature", "properties": {"easting": 247500.0, "northing": 54500.0, "gridsq": "X247Y054", "numresp": 79, "numpeople": 184.86, "numkeys": 0, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[248000.0, 54000.0], [247000.0, 54000.0], [247000.0, 55000.0], [248000.0, 55000.0], [248000.0, 54000.0]]]}}, {"id": "17", "type": "Feature", "properties": {"easting": 249500.0, "northing": 54500.0, "gridsq": "X249Y054", "numresp": 97, "numpeople": 226.98, "numkeys": 3, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[250000.0, 54000.0], [249000.0, 54000.0], [249000.0, 55000.0], [250000.0, 55000.0], [250000.0, 54000.0]]]}}, {"id": "18", "type": "Feature", "properties": {"easting": 247500.0, "northing": 55500.0, "gridsq": "X247Y055", "numresp": 221, "numpeople": 517.14, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[248000.0, 55000.0], [247000.0, 55000.0], [247000.0, 56000.0], [248000.0, 56000.0], [248000.0, 55000.0]]]}}, {"id": "19", "type": "Feature", "properties": {"easting": 248500.0, "northing": 55500.0, "gridsq": "X248Y055", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[249000.0, 55000.0], [248000.0, 55000.0], [248000.0, 56000.0], [249000.0, 56000.0], [249000.0, 55000.0]]]}}, {"id": "20", "type": "Feature", "properties": {"easting": 249500.0, "northing": 55500.0, "gridsq": "X249Y055", "numresp": 98, "numpeople": 229.32, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[250000.0, 55000.0], [249000.0, 55000.0], [249000.0, 56000.0], [250000.0, 56000.0], [250000.0, 55000.0]]]}}, {"id": "21", "type": "Feature", "properties": {"easting": 292500.0, "northing": 55500.0, "gridsq": "X292Y055", "numresp": 162, "numpeople": 379.08, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[293000.0, 55000.0], [292000.0, 55000.0], [292000.0, 56000.0], [293000.0, 56000.0], [293000.0, 55000.0]]]}}, {"id": "22", "type": "Feature", "properties": {"easting": 245500.0, "northing": 56500.0, "gridsq": "X245Y056", "numresp": 97, "numpeople": 226.98, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[246000.0, 56000.0], [245000.0, 56000.0], [245000.0, 57000.0], [246000.0, 57000.0], [246000.0, 56000.0]]]}}, {"id": "23", "type": "Feature", "properties": {"easting": 252500.0, "northing": 56500.0, "gridsq": "X252Y056", "numresp": 29, "numpeople": 67.86, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[253000.0, 56000.0], [252000.0, 56000.0], [252000.0, 57000.0], [253000.0, 57000.0], [253000.0, 56000.0]]]}}, {"id": "24", "type": "Feature", "properties": {"easting": 253500.0, "northing": 56500.0, "gridsq": "X253Y056", "numresp": 95, "numpeople": 222.3, "numkeys": 1, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[254000.0, 56000.0], [253000.0, 56000.0], [253000.0, 57000.0], [254000.0, 57000.0], [254000.0, 56000.0]]]}}, {"id": "25", "type": "Feature", "properties": {"easting": 288500.0, "northing": 56500.0, "gridsq": "X288Y056", "numresp": 24, "numpeople": 56.16, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[289000.0, 56000.0], [288000.0, 56000.0], [288000.0, 57000.0], [289000.0, 57000.0], [289000.0, 56000.0]]]}}, {"id": "26", "type": "Feature", "properties": {"easting": 292500.0, "northing": 56500.0, "gridsq": "X292Y056", "numresp": 94, "numpeople": 219.96, "numkeys": 0, "numnonresp": 69, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[293000.0, 56000.0], [292000.0, 56000.0], [292000.0, 57000.0], [293000.0, 57000.0], [293000.0, 56000.0]]]}}, {"id": "27", "type": "Feature", "properties": {"easting": 280500.0, "northing": 60500.0, "gridsq": "X280Y060", "numresp": 93, "numpeople": 217.62, "numkeys": 2, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[281000.0, 60000.0], [280000.0, 60000.0], [280000.0, 61000.0], [281000.0, 61000.0], [281000.0, 60000.0]]]}}, {"id": "28", "type": "Feature", "properties": {"easting": 288500.0, "northing": 60500.0, "gridsq": "X288Y060", "numresp": 285, "numpeople": 666.9, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[289000.0, 60000.0], [288000.0, 60000.0], [288000.0, 61000.0], [289000.0, 61000.0], [289000.0, 60000.0]]]}}, {"id": "29", "type": "Feature", "properties": {"easting": 289500.0, "northing": 60500.0, "gridsq": "X289Y060", "numresp": 112, "numpeople": 262.08, "numkeys": 0, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[290000.0, 60000.0], [289000.0, 60000.0], [289000.0, 61000.0], [290000.0, 61000.0], [290000.0, 60000.0]]]}}, {"id": "30", "type": "Feature", "properties": {"easting": 289500.0, "northing": 61500.0, "gridsq": "X289Y061", "numresp": 127, "numpeople": 297.18, "numkeys": 3, "numnonresp": 59, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[290000.0, 61000.0], [289000.0, 61000.0], [289000.0, 62000.0], [290000.0, 62000.0], [290000.0, 61000.0]]]}}, {"id": "31", "type": "Feature", "properties": {"easting": 291500.0, "northing": 63500.0, "gridsq": "X291Y063", "numresp": 61, "numpeople": 142.74, "numkeys": 2, "numnonresp": 155, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[292000.0, 63000.0], [291000.0, 63000.0], [291000.0, 64000.0], [292000.0, 64000.0], [292000.0, 63000.0]]]}}, {"id": "32", "type": "Feature", "properties": {"easting": 290500.0, "northing": 64500.0, "gridsq": "X290Y064", "numresp": 154, "numpeople": 360.36, "numkeys": 2, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[291000.0, 64000.0], [290000.0, 64000.0], [290000.0, 65000.0], [291000.0, 65000.0], [291000.0, 64000.0]]]}}, {"id": "33", "type": "Feature", "properties": {"easting": 291500.0, "northing": 64500.0, "gridsq": "X291Y064", "numresp": 214, "numpeople": 500.76, "numkeys": 0, "numnonresp": 122, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[292000.0, 64000.0], [291000.0, 64000.0], [291000.0, 65000.0], [292000.0, 65000.0], [292000.0, 64000.0]]]}}, {"id": "34", "type": "Feature", "properties": {"easting": 291500.0, "northing": 65500.0, "gridsq": "X291Y065", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[292000.0, 65000.0], [291000.0, 65000.0], [291000.0, 66000.0], [292000.0, 66000.0], [292000.0, 65000.0]]]}}, {"id": "35", "type": "Feature", "properties": {"easting": 274500.0, "northing": 66500.0, "gridsq": "X274Y066", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[275000.0, 66000.0], [274000.0, 66000.0], [274000.0, 67000.0], [275000.0, 67000.0], [275000.0, 66000.0]]]}}, {"id": "36", "type": "Feature", "properties": {"easting": 207500.0, "northing": 67500.0, "gridsq": "X207Y067", "numresp": 82, "numpeople": 191.88, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[208000.0, 67000.0], [207000.0, 67000.0], [207000.0, 68000.0], [208000.0, 68000.0], [208000.0, 67000.0]]]}}, {"id": "37", "type": "Feature", "properties": {"easting": 291500.0, "northing": 67500.0, "gridsq": "X291Y067", "numresp": 31, "numpeople": 72.54, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[292000.0, 67000.0], [291000.0, 67000.0], [291000.0, 68000.0], [292000.0, 68000.0], [292000.0, 67000.0]]]}}, {"id": "38", "type": "Feature", "properties": {"easting": 275500.0, "northing": 69500.0, "gridsq": "X275Y069", "numresp": 108, "numpeople": 252.72, "numkeys": 0, "numnonresp": 73, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[276000.0, 69000.0], [275000.0, 69000.0], [275000.0, 70000.0], [276000.0, 70000.0], [276000.0, 69000.0]]]}}, {"id": "39", "type": "Feature", "properties": {"easting": 285500.0, "northing": 71500.0, "gridsq": "X285Y071", "numresp": 59, "numpeople": 138.06, "numkeys": 3, "numnonresp": 94, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[286000.0, 71000.0], [285000.0, 71000.0], [285000.0, 72000.0], [286000.0, 72000.0], [286000.0, 71000.0]]]}}, {"id": "40", "type": "Feature", "properties": {"easting": 286500.0, "northing": 71500.0, "gridsq": "X286Y071", "numresp": 31, "numpeople": 72.54, "numkeys": 1, "numnonresp": 57, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[287000.0, 71000.0], [286000.0, 71000.0], [286000.0, 72000.0], [287000.0, 72000.0], [287000.0, 71000.0]]]}}, {"id": "41", "type": "Feature", "properties": {"easting": 294500.0, "northing": 72500.0, "gridsq": "X294Y072", "numresp": 30, "numpeople": 70.2, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[295000.0, 72000.0], [294000.0, 72000.0], [294000.0, 73000.0], [295000.0, 73000.0], [295000.0, 72000.0]]]}}, {"id": "42", "type": "Feature", "properties": {"easting": 248500.0, "northing": 74500.0, "gridsq": "X248Y074", "numresp": 38, "numpeople": 88.92, "numkeys": 0, "numnonresp": 64, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[249000.0, 74000.0], [248000.0, 74000.0], [248000.0, 75000.0], [249000.0, 75000.0], [249000.0, 74000.0]]]}}, {"id": "43", "type": "Feature", "properties": {"easting": 191500.0, "northing": 75500.0, "gridsq": "X191Y075", "numresp": 29, "numpeople": 67.86, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[192000.0, 75000.0], [191000.0, 75000.0], [191000.0, 76000.0], [192000.0, 76000.0], [192000.0, 75000.0]]]}}, {"id": "44", "type": "Feature", "properties": {"easting": 296500.0, "northing": 77500.0, "gridsq": "X296Y077", "numresp": 27, "numpeople": 63.18, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[297000.0, 77000.0], [296000.0, 77000.0], [296000.0, 78000.0], [297000.0, 78000.0], [297000.0, 77000.0]]]}}, {"id": "45", "type": "Feature", "properties": {"easting": 366500.0, "northing": 77500.0, "gridsq": "X366Y077", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 77000.0], [366000.0, 77000.0], [366000.0, 78000.0], [367000.0, 78000.0], [367000.0, 77000.0]]]}}, {"id": "46", "type": "Feature", "properties": {"easting": 365500.0, "northing": 78500.0, "gridsq": "X365Y078", "numresp": 40, "numpeople": 93.6, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[366000.0, 78000.0], [365000.0, 78000.0], [365000.0, 79000.0], [366000.0, 79000.0], [366000.0, 78000.0]]]}}, {"id": "47", "type": "Feature", "properties": {"easting": 367500.0, "northing": 78500.0, "gridsq": "X367Y078", "numresp": 37, "numpeople": 86.58, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[368000.0, 78000.0], [367000.0, 78000.0], [367000.0, 79000.0], [368000.0, 79000.0], [368000.0, 78000.0]]]}}, {"id": "48", "type": "Feature", "properties": {"easting": 368500.0, "northing": 78500.0, "gridsq": "X368Y078", "numresp": 22, "numpeople": 51.48, "numkeys": 0, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 78000.0], [368000.0, 78000.0], [368000.0, 79000.0], [369000.0, 79000.0], [369000.0, 78000.0]]]}}, {"id": "49", "type": "Feature", "properties": {"easting": 367500.0, "northing": 79500.0, "gridsq": "X367Y079", "numresp": 54, "numpeople": 126.36, "numkeys": 3, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[368000.0, 79000.0], [367000.0, 79000.0], [367000.0, 80000.0], [368000.0, 80000.0], [368000.0, 79000.0]]]}}, {"id": "50", "type": "Feature", "properties": {"easting": 401500.0, "northing": 79500.0, "gridsq": "X401Y079", "numresp": 8, "numpeople": 18.72, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[402000.0, 79000.0], [401000.0, 79000.0], [401000.0, 80000.0], [402000.0, 80000.0], [402000.0, 79000.0]]]}}, {"id": "51", "type": "Feature", "properties": {"easting": 300500.0, "northing": 80500.0, "gridsq": "X300Y080", "numresp": 69, "numpeople": 161.46, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[301000.0, 80000.0], [300000.0, 80000.0], [300000.0, 81000.0], [301000.0, 81000.0], [301000.0, 80000.0]]]}}, {"id": "52", "type": "Feature", "properties": {"easting": 300500.0, "northing": 81500.0, "gridsq": "X300Y081", "numresp": 764, "numpeople": 1787.76, "numkeys": 1, "numnonresp": 93, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[301000.0, 81000.0], [300000.0, 81000.0], [300000.0, 82000.0], [301000.0, 82000.0], [301000.0, 81000.0]]]}}, {"id": "53", "type": "Feature", "properties": {"easting": 306500.0, "northing": 81500.0, "gridsq": "X306Y081", "numresp": 30, "numpeople": 70.2, "numkeys": 0, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[307000.0, 81000.0], [306000.0, 81000.0], [306000.0, 82000.0], [307000.0, 82000.0], [307000.0, 81000.0]]]}}, {"id": "54", "type": "Feature", "properties": {"easting": 369500.0, "northing": 82500.0, "gridsq": "X369Y082", "numresp": 53, "numpeople": 124.02, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 82000.0], [369000.0, 82000.0], [369000.0, 83000.0], [370000.0, 83000.0], [370000.0, 82000.0]]]}}, {"id": "55", "type": "Feature", "properties": {"easting": 312500.0, "northing": 87500.0, "gridsq": "X312Y087", "numresp": 89, "numpeople": 208.26, "numkeys": 1, "numnonresp": 61, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[313000.0, 87000.0], [312000.0, 87000.0], [312000.0, 88000.0], [313000.0, 88000.0], [313000.0, 87000.0]]]}}, {"id": "56", "type": "Feature", "properties": {"easting": 368500.0, "northing": 90500.0, "gridsq": "X368Y090", "numresp": 103, "numpeople": 241.02, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 90000.0], [368000.0, 90000.0], [368000.0, 91000.0], [369000.0, 91000.0], [369000.0, 90000.0]]]}}, {"id": "57", "type": "Feature", "properties": {"easting": 369500.0, "northing": 90500.0, "gridsq": "X369Y090", "numresp": 96, "numpeople": 224.64, "numkeys": 3, "numnonresp": 57, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 90000.0], [369000.0, 90000.0], [369000.0, 91000.0], [370000.0, 91000.0], [370000.0, 90000.0]]]}}, {"id": "58", "type": "Feature", "properties": {"easting": 291500.0, "northing": 91500.0, "gridsq": "X291Y091", "numresp": 41, "numpeople": 95.94, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[292000.0, 91000.0], [291000.0, 91000.0], [291000.0, 92000.0], [292000.0, 92000.0], [292000.0, 91000.0]]]}}, {"id": "59", "type": "Feature", "properties": {"easting": 408500.0, "northing": 91500.0, "gridsq": "X408Y091", "numresp": 44, "numpeople": 102.96, "numkeys": 3, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 91000.0], [408000.0, 91000.0], [408000.0, 92000.0], [409000.0, 92000.0], [409000.0, 91000.0]]]}}, {"id": "60", "type": "Feature", "properties": {"easting": 292500.0, "northing": 92500.0, "gridsq": "X292Y092", "numresp": 70, "numpeople": 163.8, "numkeys": 3, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[293000.0, 92000.0], [292000.0, 92000.0], [292000.0, 93000.0], [293000.0, 93000.0], [293000.0, 92000.0]]]}}, {"id": "61", "type": "Feature", "properties": {"easting": 334500.0, "northing": 92500.0, "gridsq": "X334Y092", "numresp": 57, "numpeople": 133.38, "numkeys": 1, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 92000.0], [334000.0, 92000.0], [334000.0, 93000.0], [335000.0, 93000.0], [335000.0, 92000.0]]]}}, {"id": "62", "type": "Feature", "properties": {"easting": 401500.0, "northing": 92500.0, "gridsq": "X401Y092", "numresp": 99, "numpeople": 231.66, "numkeys": 1, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[402000.0, 92000.0], [401000.0, 92000.0], [401000.0, 93000.0], [402000.0, 93000.0], [402000.0, 92000.0]]]}}, {"id": "63", "type": "Feature", "properties": {"easting": 404500.0, "northing": 92500.0, "gridsq": "X404Y092", "numresp": 119, "numpeople": 278.46, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 92000.0], [404000.0, 92000.0], [404000.0, 93000.0], [405000.0, 93000.0], [405000.0, 92000.0]]]}}, {"id": "64", "type": "Feature", "properties": {"easting": 459500.0, "northing": 92500.0, "gridsq": "X459Y092", "numresp": 200, "numpeople": 468.0, "numkeys": 3, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 92000.0], [459000.0, 92000.0], [459000.0, 93000.0], [460000.0, 93000.0], [460000.0, 92000.0]]]}}, {"id": "65", "type": "Feature", "properties": {"easting": 290500.0, "northing": 93500.0, "gridsq": "X290Y093", "numresp": 159, "numpeople": 372.06, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[291000.0, 93000.0], [290000.0, 93000.0], [290000.0, 94000.0], [291000.0, 94000.0], [291000.0, 93000.0]]]}}, {"id": "66", "type": "Feature", "properties": {"easting": 291500.0, "northing": 93500.0, "gridsq": "X291Y093", "numresp": 204, "numpeople": 477.36, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[292000.0, 93000.0], [291000.0, 93000.0], [291000.0, 94000.0], [292000.0, 94000.0], [292000.0, 93000.0]]]}}, {"id": "67", "type": "Feature", "properties": {"easting": 292500.0, "northing": 93500.0, "gridsq": "X292Y093", "numresp": 114, "numpeople": 266.76, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[293000.0, 93000.0], [292000.0, 93000.0], [292000.0, 94000.0], [293000.0, 94000.0], [293000.0, 93000.0]]]}}, {"id": "68", "type": "Feature", "properties": {"easting": 409500.0, "northing": 93500.0, "gridsq": "X409Y093", "numresp": 94, "numpeople": 219.96, "numkeys": 1, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[410000.0, 93000.0], [409000.0, 93000.0], [409000.0, 94000.0], [410000.0, 94000.0], [410000.0, 93000.0]]]}}, {"id": "69", "type": "Feature", "properties": {"easting": 424500.0, "northing": 93500.0, "gridsq": "X424Y093", "numresp": 16, "numpeople": 37.44, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 93000.0], [424000.0, 93000.0], [424000.0, 94000.0], [425000.0, 94000.0], [425000.0, 93000.0]]]}}, {"id": "70", "type": "Feature", "properties": {"easting": 450500.0, "northing": 95500.0, "gridsq": "X450Y095", "numresp": 81, "numpeople": 189.54, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 95000.0], [450000.0, 95000.0], [450000.0, 96000.0], [451000.0, 96000.0], [451000.0, 95000.0]]]}}, {"id": "71", "type": "Feature", "properties": {"easting": 407500.0, "northing": 96500.0, "gridsq": "X407Y096", "numresp": 86, "numpeople": 201.24, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 96000.0], [407000.0, 96000.0], [407000.0, 97000.0], [408000.0, 97000.0], [408000.0, 96000.0]]]}}, {"id": "72", "type": "Feature", "properties": {"easting": 449500.0, "northing": 96500.0, "gridsq": "X449Y096", "numresp": 28, "numpeople": 65.52, "numkeys": 0, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[450000.0, 96000.0], [449000.0, 96000.0], [449000.0, 97000.0], [450000.0, 97000.0], [450000.0, 96000.0]]]}}, {"id": "73", "type": "Feature", "properties": {"easting": 329500.0, "northing": 98500.0, "gridsq": "X329Y098", "numresp": 113, "numpeople": 264.42, "numkeys": 2, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[330000.0, 98000.0], [329000.0, 98000.0], [329000.0, 99000.0], [330000.0, 99000.0], [330000.0, 98000.0]]]}}, {"id": "74", "type": "Feature", "properties": {"easting": 408500.0, "northing": 98500.0, "gridsq": "X408Y098", "numresp": 24, "numpeople": 56.16, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 98000.0], [408000.0, 98000.0], [408000.0, 99000.0], [409000.0, 99000.0], [409000.0, 98000.0]]]}}, {"id": "75", "type": "Feature", "properties": {"easting": 548500.0, "northing": 98500.0, "gridsq": "X548Y098", "numresp": 64, "numpeople": 149.76, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 98000.0], [548000.0, 98000.0], [548000.0, 99000.0], [549000.0, 99000.0], [549000.0, 98000.0]]]}}, {"id": "76", "type": "Feature", "properties": {"easting": 560500.0, "northing": 98500.0, "gridsq": "X560Y098", "numresp": 169, "numpeople": 395.46, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[561000.0, 98000.0], [560000.0, 98000.0], [560000.0, 99000.0], [561000.0, 99000.0], [561000.0, 98000.0]]]}}, {"id": "77", "type": "Feature", "properties": {"easting": 561500.0, "northing": 98500.0, "gridsq": "X561Y098", "numresp": 198, "numpeople": 463.32, "numkeys": 0, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[562000.0, 98000.0], [561000.0, 98000.0], [561000.0, 99000.0], [562000.0, 99000.0], [562000.0, 98000.0]]]}}, {"id": "78", "type": "Feature", "properties": {"easting": 548500.0, "northing": 99500.0, "gridsq": "X548Y099", "numresp": 141, "numpeople": 329.94, "numkeys": 2, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 99000.0], [548000.0, 99000.0], [548000.0, 100000.0], [549000.0, 100000.0], [549000.0, 99000.0]]]}}, {"id": "79", "type": "Feature", "properties": {"easting": 559500.0, "northing": 99500.0, "gridsq": "X559Y099", "numresp": 126, "numpeople": 294.84, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 99000.0], [559000.0, 99000.0], [559000.0, 100000.0], [560000.0, 100000.0], [560000.0, 99000.0]]]}}, {"id": "80", "type": "Feature", "properties": {"easting": 560500.0, "northing": 99500.0, "gridsq": "X560Y099", "numresp": 170, "numpeople": 397.8, "numkeys": 1, "numnonresp": 41, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[561000.0, 99000.0], [560000.0, 99000.0], [560000.0, 100000.0], [561000.0, 100000.0], [561000.0, 99000.0]]]}}, {"id": "81", "type": "Feature", "properties": {"easting": 561500.0, "northing": 99500.0, "gridsq": "X561Y099", "numresp": 581, "numpeople": 1359.54, "numkeys": 4, "numnonresp": 183, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[562000.0, 99000.0], [561000.0, 99000.0], [561000.0, 100000.0], [562000.0, 100000.0], [562000.0, 99000.0]]]}}, {"id": "82", "type": "Feature", "properties": {"easting": 283500.0, "northing": 100500.0, "gridsq": "X283Y100", "numresp": 134, "numpeople": 313.56, "numkeys": 3, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[284000.0, 100000.0], [283000.0, 100000.0], [283000.0, 101000.0], [284000.0, 101000.0], [284000.0, 100000.0]]]}}, {"id": "83", "type": "Feature", "properties": {"easting": 315500.0, "northing": 100500.0, "gridsq": "X315Y100", "numresp": 92, "numpeople": 215.28, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[316000.0, 100000.0], [315000.0, 100000.0], [315000.0, 101000.0], [316000.0, 101000.0], [316000.0, 100000.0]]]}}, {"id": "84", "type": "Feature", "properties": {"easting": 464500.0, "northing": 100500.0, "gridsq": "X464Y100", "numresp": 3, "numpeople": 7.02, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[465000.0, 100000.0], [464000.0, 100000.0], [464000.0, 101000.0], [465000.0, 101000.0], [465000.0, 100000.0]]]}}, {"id": "85", "type": "Feature", "properties": {"easting": 559500.0, "northing": 100500.0, "gridsq": "X559Y100", "numresp": 54, "numpeople": 126.36, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 100000.0], [559000.0, 100000.0], [559000.0, 101000.0], [560000.0, 101000.0], [560000.0, 100000.0]]]}}, {"id": "86", "type": "Feature", "properties": {"easting": 347500.0, "northing": 101500.0, "gridsq": "X347Y101", "numresp": 50, "numpeople": 117.0, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[348000.0, 101000.0], [347000.0, 101000.0], [347000.0, 102000.0], [348000.0, 102000.0], [348000.0, 101000.0]]]}}, {"id": "87", "type": "Feature", "properties": {"easting": 348500.0, "northing": 101500.0, "gridsq": "X348Y101", "numresp": 63, "numpeople": 147.42, "numkeys": 3, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[349000.0, 101000.0], [348000.0, 101000.0], [348000.0, 102000.0], [349000.0, 102000.0], [349000.0, 101000.0]]]}}, {"id": "88", "type": "Feature", "properties": {"easting": 502500.0, "northing": 101500.0, "gridsq": "X502Y101", "numresp": 82, "numpeople": 191.88, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 101000.0], [502000.0, 101000.0], [502000.0, 102000.0], [503000.0, 102000.0], [503000.0, 101000.0]]]}}, {"id": "89", "type": "Feature", "properties": {"easting": 541500.0, "northing": 101500.0, "gridsq": "X541Y101", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 101000.0], [541000.0, 101000.0], [541000.0, 102000.0], [542000.0, 102000.0], [542000.0, 101000.0]]]}}, {"id": "90", "type": "Feature", "properties": {"easting": 544500.0, "northing": 101500.0, "gridsq": "X544Y101", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 101000.0], [544000.0, 101000.0], [544000.0, 102000.0], [545000.0, 102000.0], [545000.0, 101000.0]]]}}, {"id": "91", "type": "Feature", "properties": {"easting": 502500.0, "northing": 102500.0, "gridsq": "X502Y102", "numresp": 38, "numpeople": 88.92, "numkeys": 3, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 102000.0], [502000.0, 102000.0], [502000.0, 103000.0], [503000.0, 103000.0], [503000.0, 102000.0]]]}}, {"id": "92", "type": "Feature", "properties": {"easting": 514500.0, "northing": 102500.0, "gridsq": "X514Y102", "numresp": 277, "numpeople": 648.18, "numkeys": 2, "numnonresp": 54, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 102000.0], [514000.0, 102000.0], [514000.0, 103000.0], [515000.0, 103000.0], [515000.0, 102000.0]]]}}, {"id": "93", "type": "Feature", "properties": {"easting": 510500.0, "northing": 103500.0, "gridsq": "X510Y103", "numresp": 79, "numpeople": 184.86, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 103000.0], [510000.0, 103000.0], [510000.0, 104000.0], [511000.0, 104000.0], [511000.0, 103000.0]]]}}, {"id": "94", "type": "Feature", "properties": {"easting": 512500.0, "northing": 103500.0, "gridsq": "X512Y103", "numresp": 18, "numpeople": 42.12, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 103000.0], [512000.0, 103000.0], [512000.0, 104000.0], [513000.0, 104000.0], [513000.0, 103000.0]]]}}, {"id": "95", "type": "Feature", "properties": {"easting": 514500.0, "northing": 103500.0, "gridsq": "X514Y103", "numresp": 109, "numpeople": 255.06, "numkeys": 2, "numnonresp": 54, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 103000.0], [514000.0, 103000.0], [514000.0, 104000.0], [515000.0, 104000.0], [515000.0, 103000.0]]]}}, {"id": "96", "type": "Feature", "properties": {"easting": 531500.0, "northing": 103500.0, "gridsq": "X531Y103", "numresp": 34, "numpeople": 79.56, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 103000.0], [531000.0, 103000.0], [531000.0, 104000.0], [532000.0, 104000.0], [532000.0, 103000.0]]]}}, {"id": "97", "type": "Feature", "properties": {"easting": 533500.0, "northing": 103500.0, "gridsq": "X533Y103", "numresp": 190, "numpeople": 444.6, "numkeys": 1, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 103000.0], [533000.0, 103000.0], [533000.0, 104000.0], [534000.0, 104000.0], [534000.0, 103000.0]]]}}, {"id": "98", "type": "Feature", "properties": {"easting": 558500.0, "northing": 103500.0, "gridsq": "X558Y103", "numresp": 115, "numpeople": 269.1, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 103000.0], [558000.0, 103000.0], [558000.0, 104000.0], [559000.0, 104000.0], [559000.0, 103000.0]]]}}, {"id": "99", "type": "Feature", "properties": {"easting": 559500.0, "northing": 103500.0, "gridsq": "X559Y103", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 103000.0], [559000.0, 103000.0], [559000.0, 104000.0], [560000.0, 104000.0], [560000.0, 103000.0]]]}}, {"id": "100", "type": "Feature", "properties": {"easting": 560500.0, "northing": 103500.0, "gridsq": "X560Y103", "numresp": 126, "numpeople": 294.84, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[561000.0, 103000.0], [560000.0, 103000.0], [560000.0, 104000.0], [561000.0, 104000.0], [561000.0, 103000.0]]]}}, {"id": "101", "type": "Feature", "properties": {"easting": 506500.0, "northing": 104500.0, "gridsq": "X506Y104", "numresp": 29, "numpeople": 67.86, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 104000.0], [506000.0, 104000.0], [506000.0, 105000.0], [507000.0, 105000.0], [507000.0, 104000.0]]]}}, {"id": "102", "type": "Feature", "properties": {"easting": 510500.0, "northing": 104500.0, "gridsq": "X510Y104", "numresp": 45, "numpeople": 105.3, "numkeys": 4, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 104000.0], [510000.0, 104000.0], [510000.0, 105000.0], [511000.0, 105000.0], [511000.0, 104000.0]]]}}, {"id": "103", "type": "Feature", "properties": {"easting": 511500.0, "northing": 104500.0, "gridsq": "X511Y104", "numresp": 142, "numpeople": 332.28, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 104000.0], [511000.0, 104000.0], [511000.0, 105000.0], [512000.0, 105000.0], [512000.0, 104000.0]]]}}, {"id": "104", "type": "Feature", "properties": {"easting": 527500.0, "northing": 104500.0, "gridsq": "X527Y104", "numresp": 181, "numpeople": 423.54, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 104000.0], [527000.0, 104000.0], [527000.0, 105000.0], [528000.0, 105000.0], [528000.0, 104000.0]]]}}, {"id": "105", "type": "Feature", "properties": {"easting": 528500.0, "northing": 104500.0, "gridsq": "X528Y104", "numresp": 103, "numpeople": 241.02, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 104000.0], [528000.0, 104000.0], [528000.0, 105000.0], [529000.0, 105000.0], [529000.0, 104000.0]]]}}, {"id": "106", "type": "Feature", "properties": {"easting": 529500.0, "northing": 104500.0, "gridsq": "X529Y104", "numresp": 199, "numpeople": 465.66, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 104000.0], [529000.0, 104000.0], [529000.0, 105000.0], [530000.0, 105000.0], [530000.0, 104000.0]]]}}, {"id": "107", "type": "Feature", "properties": {"easting": 530500.0, "northing": 104500.0, "gridsq": "X530Y104", "numresp": 77, "numpeople": 180.18, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 104000.0], [530000.0, 104000.0], [530000.0, 105000.0], [531000.0, 105000.0], [531000.0, 104000.0]]]}}, {"id": "108", "type": "Feature", "properties": {"easting": 531500.0, "northing": 104500.0, "gridsq": "X531Y104", "numresp": 254, "numpeople": 594.36, "numkeys": 2, "numnonresp": 77, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 104000.0], [531000.0, 104000.0], [531000.0, 105000.0], [532000.0, 105000.0], [532000.0, 104000.0]]]}}, {"id": "109", "type": "Feature", "properties": {"easting": 532500.0, "northing": 104500.0, "gridsq": "X532Y104", "numresp": 158, "numpeople": 369.72, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 104000.0], [532000.0, 104000.0], [532000.0, 105000.0], [533000.0, 105000.0], [533000.0, 104000.0]]]}}, {"id": "110", "type": "Feature", "properties": {"easting": 461500.0, "northing": 105500.0, "gridsq": "X461Y105", "numresp": 21, "numpeople": 49.14, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 105000.0], [461000.0, 105000.0], [461000.0, 106000.0], [462000.0, 106000.0], [462000.0, 105000.0]]]}}, {"id": "111", "type": "Feature", "properties": {"easting": 464500.0, "northing": 105500.0, "gridsq": "X464Y105", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[465000.0, 105000.0], [464000.0, 105000.0], [464000.0, 106000.0], [465000.0, 106000.0], [465000.0, 105000.0]]]}}, {"id": "112", "type": "Feature", "properties": {"easting": 468500.0, "northing": 105500.0, "gridsq": "X468Y105", "numresp": 37, "numpeople": 86.58, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[469000.0, 105000.0], [468000.0, 105000.0], [468000.0, 106000.0], [469000.0, 106000.0], [469000.0, 105000.0]]]}}, {"id": "113", "type": "Feature", "properties": {"easting": 512500.0, "northing": 105500.0, "gridsq": "X512Y105", "numresp": 59, "numpeople": 138.06, "numkeys": 5, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 105000.0], [512000.0, 105000.0], [512000.0, 106000.0], [513000.0, 106000.0], [513000.0, 105000.0]]]}}, {"id": "114", "type": "Feature", "properties": {"easting": 517500.0, "northing": 105500.0, "gridsq": "X517Y105", "numresp": 44, "numpeople": 102.96, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 105000.0], [517000.0, 105000.0], [517000.0, 106000.0], [518000.0, 106000.0], [518000.0, 105000.0]]]}}, {"id": "115", "type": "Feature", "properties": {"easting": 522500.0, "northing": 105500.0, "gridsq": "X522Y105", "numresp": 192, "numpeople": 449.28, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 105000.0], [522000.0, 105000.0], [522000.0, 106000.0], [523000.0, 106000.0], [523000.0, 105000.0]]]}}, {"id": "116", "type": "Feature", "properties": {"easting": 523500.0, "northing": 105500.0, "gridsq": "X523Y105", "numresp": 40, "numpeople": 93.6, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 105000.0], [523000.0, 105000.0], [523000.0, 106000.0], [524000.0, 106000.0], [524000.0, 105000.0]]]}}, {"id": "117", "type": "Feature", "properties": {"easting": 524500.0, "northing": 105500.0, "gridsq": "X524Y105", "numresp": 99, "numpeople": 231.66, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 105000.0], [524000.0, 105000.0], [524000.0, 106000.0], [525000.0, 106000.0], [525000.0, 105000.0]]]}}, {"id": "118", "type": "Feature", "properties": {"easting": 525500.0, "northing": 105500.0, "gridsq": "X525Y105", "numresp": 230, "numpeople": 538.2, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 105000.0], [525000.0, 105000.0], [525000.0, 106000.0], [526000.0, 106000.0], [526000.0, 105000.0]]]}}, {"id": "119", "type": "Feature", "properties": {"easting": 526500.0, "northing": 105500.0, "gridsq": "X526Y105", "numresp": 168, "numpeople": 393.12, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 105000.0], [526000.0, 105000.0], [526000.0, 106000.0], [527000.0, 106000.0], [527000.0, 105000.0]]]}}, {"id": "120", "type": "Feature", "properties": {"easting": 527500.0, "northing": 105500.0, "gridsq": "X527Y105", "numresp": 111, "numpeople": 259.74, "numkeys": 4, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 105000.0], [527000.0, 105000.0], [527000.0, 106000.0], [528000.0, 106000.0], [528000.0, 105000.0]]]}}, {"id": "121", "type": "Feature", "properties": {"easting": 528500.0, "northing": 105500.0, "gridsq": "X528Y105", "numresp": 881, "numpeople": 2061.54, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 105000.0], [528000.0, 105000.0], [528000.0, 106000.0], [529000.0, 106000.0], [529000.0, 105000.0]]]}}, {"id": "122", "type": "Feature", "properties": {"easting": 529500.0, "northing": 105500.0, "gridsq": "X529Y105", "numresp": 409, "numpeople": 957.06, "numkeys": 3, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 105000.0], [529000.0, 105000.0], [529000.0, 106000.0], [530000.0, 106000.0], [530000.0, 105000.0]]]}}, {"id": "123", "type": "Feature", "properties": {"easting": 530500.0, "northing": 105500.0, "gridsq": "X530Y105", "numresp": 272, "numpeople": 636.48, "numkeys": 1, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 105000.0], [530000.0, 105000.0], [530000.0, 106000.0], [531000.0, 106000.0], [531000.0, 105000.0]]]}}, {"id": "124", "type": "Feature", "properties": {"easting": 531500.0, "northing": 105500.0, "gridsq": "X531Y105", "numresp": 706, "numpeople": 1652.04, "numkeys": 2, "numnonresp": 193, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 105000.0], [531000.0, 105000.0], [531000.0, 106000.0], [532000.0, 106000.0], [532000.0, 105000.0]]]}}, {"id": "125", "type": "Feature", "properties": {"easting": 532500.0, "northing": 105500.0, "gridsq": "X532Y105", "numresp": 265, "numpeople": 620.1, "numkeys": 1, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 105000.0], [532000.0, 105000.0], [532000.0, 106000.0], [533000.0, 106000.0], [533000.0, 105000.0]]]}}, {"id": "126", "type": "Feature", "properties": {"easting": 388500.0, "northing": 106500.0, "gridsq": "X388Y106", "numresp": 67, "numpeople": 156.78, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 106000.0], [388000.0, 106000.0], [388000.0, 107000.0], [389000.0, 107000.0], [389000.0, 106000.0]]]}}, {"id": "127", "type": "Feature", "properties": {"easting": 456500.0, "northing": 106500.0, "gridsq": "X456Y106", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 106000.0], [456000.0, 106000.0], [456000.0, 107000.0], [457000.0, 107000.0], [457000.0, 106000.0]]]}}, {"id": "128", "type": "Feature", "properties": {"easting": 471500.0, "northing": 106500.0, "gridsq": "X471Y106", "numresp": 201, "numpeople": 470.34, "numkeys": 2, "numnonresp": 59, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 106000.0], [471000.0, 106000.0], [471000.0, 107000.0], [472000.0, 107000.0], [472000.0, 106000.0]]]}}, {"id": "129", "type": "Feature", "properties": {"easting": 525500.0, "northing": 106500.0, "gridsq": "X525Y106", "numresp": 129, "numpeople": 301.86, "numkeys": 0, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 106000.0], [525000.0, 106000.0], [525000.0, 107000.0], [526000.0, 107000.0], [526000.0, 106000.0]]]}}, {"id": "130", "type": "Feature", "properties": {"easting": 527500.0, "northing": 106500.0, "gridsq": "X527Y106", "numresp": 94, "numpeople": 219.96, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 106000.0], [527000.0, 106000.0], [527000.0, 107000.0], [528000.0, 107000.0], [528000.0, 106000.0]]]}}, {"id": "131", "type": "Feature", "properties": {"easting": 530500.0, "northing": 106500.0, "gridsq": "X530Y106", "numresp": 226, "numpeople": 528.84, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 106000.0], [530000.0, 106000.0], [530000.0, 107000.0], [531000.0, 107000.0], [531000.0, 106000.0]]]}}, {"id": "132", "type": "Feature", "properties": {"easting": 531500.0, "northing": 106500.0, "gridsq": "X531Y106", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 106000.0], [531000.0, 106000.0], [531000.0, 107000.0], [532000.0, 107000.0], [532000.0, 106000.0]]]}}, {"id": "133", "type": "Feature", "properties": {"easting": 388500.0, "northing": 107500.0, "gridsq": "X388Y107", "numresp": 25, "numpeople": 58.5, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 107000.0], [388000.0, 107000.0], [388000.0, 108000.0], [389000.0, 108000.0], [389000.0, 107000.0]]]}}, {"id": "134", "type": "Feature", "properties": {"easting": 442500.0, "northing": 107500.0, "gridsq": "X442Y107", "numresp": 42, "numpeople": 98.28, "numkeys": 0, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 107000.0], [442000.0, 107000.0], [442000.0, 108000.0], [443000.0, 108000.0], [443000.0, 107000.0]]]}}, {"id": "135", "type": "Feature", "properties": {"easting": 467500.0, "northing": 107500.0, "gridsq": "X467Y107", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[468000.0, 107000.0], [467000.0, 107000.0], [467000.0, 108000.0], [468000.0, 108000.0], [468000.0, 107000.0]]]}}, {"id": "136", "type": "Feature", "properties": {"easting": 472500.0, "northing": 107500.0, "gridsq": "X472Y107", "numresp": 55, "numpeople": 128.7, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[473000.0, 107000.0], [472000.0, 107000.0], [472000.0, 108000.0], [473000.0, 108000.0], [473000.0, 107000.0]]]}}, {"id": "137", "type": "Feature", "properties": {"easting": 524500.0, "northing": 107500.0, "gridsq": "X524Y107", "numresp": 126, "numpeople": 294.84, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 107000.0], [524000.0, 107000.0], [524000.0, 108000.0], [525000.0, 108000.0], [525000.0, 107000.0]]]}}, {"id": "138", "type": "Feature", "properties": {"easting": 529500.0, "northing": 107500.0, "gridsq": "X529Y107", "numresp": 43, "numpeople": 100.62, "numkeys": 3, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 107000.0], [529000.0, 107000.0], [529000.0, 108000.0], [530000.0, 108000.0], [530000.0, 107000.0]]]}}, {"id": "139", "type": "Feature", "properties": {"easting": 573500.0, "northing": 107500.0, "gridsq": "X573Y107", "numresp": 140, "numpeople": 327.6, "numkeys": 2, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[574000.0, 107000.0], [573000.0, 107000.0], [573000.0, 108000.0], [574000.0, 108000.0], [574000.0, 107000.0]]]}}, {"id": "140", "type": "Feature", "properties": {"easting": 575500.0, "northing": 107500.0, "gridsq": "X575Y107", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 107000.0], [575000.0, 107000.0], [575000.0, 108000.0], [576000.0, 108000.0], [576000.0, 107000.0]]]}}, {"id": "141", "type": "Feature", "properties": {"easting": 332500.0, "northing": 108500.0, "gridsq": "X332Y108", "numresp": 91, "numpeople": 212.94, "numkeys": 2, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 108000.0], [332000.0, 108000.0], [332000.0, 109000.0], [333000.0, 109000.0], [333000.0, 108000.0]]]}}, {"id": "142", "type": "Feature", "properties": {"easting": 333500.0, "northing": 108500.0, "gridsq": "X333Y108", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 108000.0], [333000.0, 108000.0], [333000.0, 109000.0], [334000.0, 109000.0], [334000.0, 108000.0]]]}}, {"id": "143", "type": "Feature", "properties": {"easting": 442500.0, "northing": 108500.0, "gridsq": "X442Y108", "numresp": 22, "numpeople": 51.48, "numkeys": 1, "numnonresp": 41, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 108000.0], [442000.0, 108000.0], [442000.0, 109000.0], [443000.0, 109000.0], [443000.0, 108000.0]]]}}, {"id": "144", "type": "Feature", "properties": {"easting": 529500.0, "northing": 108500.0, "gridsq": "X529Y108", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 108000.0], [529000.0, 108000.0], [529000.0, 109000.0], [530000.0, 109000.0], [530000.0, 108000.0]]]}}, {"id": "145", "type": "Feature", "properties": {"easting": 530500.0, "northing": 108500.0, "gridsq": "X530Y108", "numresp": 205, "numpeople": 479.7, "numkeys": 3, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 108000.0], [530000.0, 108000.0], [530000.0, 109000.0], [531000.0, 109000.0], [531000.0, 108000.0]]]}}, {"id": "146", "type": "Feature", "properties": {"easting": 574500.0, "northing": 108500.0, "gridsq": "X574Y108", "numresp": 42, "numpeople": 98.28, "numkeys": 2, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 108000.0], [574000.0, 108000.0], [574000.0, 109000.0], [575000.0, 109000.0], [575000.0, 108000.0]]]}}, {"id": "147", "type": "Feature", "properties": {"easting": 579500.0, "northing": 108500.0, "gridsq": "X579Y108", "numresp": 138, "numpeople": 322.92, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[580000.0, 108000.0], [579000.0, 108000.0], [579000.0, 109000.0], [580000.0, 109000.0], [580000.0, 108000.0]]]}}, {"id": "148", "type": "Feature", "properties": {"easting": 344500.0, "northing": 109500.0, "gridsq": "X344Y109", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[345000.0, 109000.0], [344000.0, 109000.0], [344000.0, 110000.0], [345000.0, 110000.0], [345000.0, 109000.0]]]}}, {"id": "149", "type": "Feature", "properties": {"easting": 470500.0, "northing": 109500.0, "gridsq": "X470Y109", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[471000.0, 109000.0], [470000.0, 109000.0], [470000.0, 110000.0], [471000.0, 110000.0], [471000.0, 109000.0]]]}}, {"id": "150", "type": "Feature", "properties": {"easting": 534500.0, "northing": 109500.0, "gridsq": "X534Y109", "numresp": 0, "numpeople": 0.0, "numkeys": 1, "numnonresp": 207, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 109000.0], [534000.0, 109000.0], [534000.0, 110000.0], [535000.0, 110000.0], [535000.0, 109000.0]]]}}, {"id": "151", "type": "Feature", "properties": {"easting": 541500.0, "northing": 109500.0, "gridsq": "X541Y109", "numresp": 28, "numpeople": 65.52, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 109000.0], [541000.0, 109000.0], [541000.0, 110000.0], [542000.0, 110000.0], [542000.0, 109000.0]]]}}, {"id": "152", "type": "Feature", "properties": {"easting": 580500.0, "northing": 109500.0, "gridsq": "X580Y109", "numresp": 429, "numpeople": 1003.86, "numkeys": 6, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[581000.0, 109000.0], [580000.0, 109000.0], [580000.0, 110000.0], [581000.0, 110000.0], [581000.0, 109000.0]]]}}, {"id": "153", "type": "Feature", "properties": {"easting": 581500.0, "northing": 109500.0, "gridsq": "X581Y109", "numresp": 230, "numpeople": 538.2, "numkeys": 5, "numnonresp": 98, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 109000.0], [581000.0, 109000.0], [581000.0, 110000.0], [582000.0, 110000.0], [582000.0, 109000.0]]]}}, {"id": "154", "type": "Feature", "properties": {"easting": 582500.0, "northing": 109500.0, "gridsq": "X582Y109", "numresp": 156, "numpeople": 365.04, "numkeys": 1, "numnonresp": 89, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[583000.0, 109000.0], [582000.0, 109000.0], [582000.0, 110000.0], [583000.0, 110000.0], [583000.0, 109000.0]]]}}, {"id": "155", "type": "Feature", "properties": {"easting": 467500.0, "northing": 110500.0, "gridsq": "X467Y110", "numresp": 174, "numpeople": 407.16, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[468000.0, 110000.0], [467000.0, 110000.0], [467000.0, 111000.0], [468000.0, 111000.0], [468000.0, 110000.0]]]}}, {"id": "156", "type": "Feature", "properties": {"easting": 473500.0, "northing": 110500.0, "gridsq": "X473Y110", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[474000.0, 110000.0], [473000.0, 110000.0], [473000.0, 111000.0], [474000.0, 111000.0], [474000.0, 110000.0]]]}}, {"id": "157", "type": "Feature", "properties": {"easting": 558500.0, "northing": 110500.0, "gridsq": "X558Y110", "numresp": 74, "numpeople": 173.16, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 110000.0], [558000.0, 110000.0], [558000.0, 111000.0], [559000.0, 111000.0], [559000.0, 110000.0]]]}}, {"id": "158", "type": "Feature", "properties": {"easting": 581500.0, "northing": 110500.0, "gridsq": "X581Y110", "numresp": 264, "numpeople": 617.76, "numkeys": 1, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 110000.0], [581000.0, 110000.0], [581000.0, 111000.0], [582000.0, 111000.0], [582000.0, 110000.0]]]}}, {"id": "159", "type": "Feature", "properties": {"easting": 582500.0, "northing": 110500.0, "gridsq": "X582Y110", "numresp": 115, "numpeople": 269.1, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[583000.0, 110000.0], [582000.0, 110000.0], [582000.0, 111000.0], [583000.0, 111000.0], [583000.0, 110000.0]]]}}, {"id": "160", "type": "Feature", "properties": {"easting": 442500.0, "northing": 111500.0, "gridsq": "X442Y111", "numresp": 11, "numpeople": 25.74, "numkeys": 4, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 111000.0], [442000.0, 111000.0], [442000.0, 112000.0], [443000.0, 112000.0], [443000.0, 111000.0]]]}}, {"id": "161", "type": "Feature", "properties": {"easting": 457500.0, "northing": 111500.0, "gridsq": "X457Y111", "numresp": 53, "numpeople": 124.02, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 111000.0], [457000.0, 111000.0], [457000.0, 112000.0], [458000.0, 112000.0], [458000.0, 111000.0]]]}}, {"id": "162", "type": "Feature", "properties": {"easting": 468500.0, "northing": 111500.0, "gridsq": "X468Y111", "numresp": 247, "numpeople": 577.98, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[469000.0, 111000.0], [468000.0, 111000.0], [468000.0, 112000.0], [469000.0, 112000.0], [469000.0, 111000.0]]]}}, {"id": "163", "type": "Feature", "properties": {"easting": 579500.0, "northing": 111500.0, "gridsq": "X579Y111", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[580000.0, 111000.0], [579000.0, 111000.0], [579000.0, 112000.0], [580000.0, 112000.0], [580000.0, 111000.0]]]}}, {"id": "164", "type": "Feature", "properties": {"easting": 440500.0, "northing": 112500.0, "gridsq": "X440Y112", "numresp": 56, "numpeople": 131.04, "numkeys": 0, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[441000.0, 112000.0], [440000.0, 112000.0], [440000.0, 113000.0], [441000.0, 113000.0], [441000.0, 112000.0]]]}}, {"id": "165", "type": "Feature", "properties": {"easting": 449500.0, "northing": 112500.0, "gridsq": "X449Y112", "numresp": 111, "numpeople": 259.74, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[450000.0, 112000.0], [449000.0, 112000.0], [449000.0, 113000.0], [450000.0, 113000.0], [450000.0, 112000.0]]]}}, {"id": "166", "type": "Feature", "properties": {"easting": 296500.0, "northing": 113500.0, "gridsq": "X296Y113", "numresp": 29, "numpeople": 67.86, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[297000.0, 113000.0], [296000.0, 113000.0], [296000.0, 114000.0], [297000.0, 114000.0], [297000.0, 113000.0]]]}}, {"id": "167", "type": "Feature", "properties": {"easting": 441500.0, "northing": 113500.0, "gridsq": "X441Y113", "numresp": 155, "numpeople": 362.7, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[442000.0, 113000.0], [441000.0, 113000.0], [441000.0, 114000.0], [442000.0, 114000.0], [442000.0, 113000.0]]]}}, {"id": "168", "type": "Feature", "properties": {"easting": 442500.0, "northing": 113500.0, "gridsq": "X442Y113", "numresp": 111, "numpeople": 259.74, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 113000.0], [442000.0, 113000.0], [442000.0, 114000.0], [443000.0, 114000.0], [443000.0, 113000.0]]]}}, {"id": "169", "type": "Feature", "properties": {"easting": 444500.0, "northing": 113500.0, "gridsq": "X444Y113", "numresp": 86, "numpeople": 201.24, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[445000.0, 113000.0], [444000.0, 113000.0], [444000.0, 114000.0], [445000.0, 114000.0], [445000.0, 113000.0]]]}}, {"id": "170", "type": "Feature", "properties": {"easting": 451500.0, "northing": 113500.0, "gridsq": "X451Y113", "numresp": 2, "numpeople": 4.68, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 113000.0], [451000.0, 113000.0], [451000.0, 114000.0], [452000.0, 114000.0], [452000.0, 113000.0]]]}}, {"id": "171", "type": "Feature", "properties": {"easting": 336500.0, "northing": 114500.0, "gridsq": "X336Y114", "numresp": 51, "numpeople": 119.34, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 114000.0], [336000.0, 114000.0], [336000.0, 115000.0], [337000.0, 115000.0], [337000.0, 114000.0]]]}}, {"id": "172", "type": "Feature", "properties": {"easting": 434500.0, "northing": 114500.0, "gridsq": "X434Y114", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 114000.0], [434000.0, 114000.0], [434000.0, 115000.0], [435000.0, 115000.0], [435000.0, 114000.0]]]}}, {"id": "173", "type": "Feature", "properties": {"easting": 334500.0, "northing": 115500.0, "gridsq": "X334Y115", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 115000.0], [334000.0, 115000.0], [334000.0, 116000.0], [335000.0, 116000.0], [335000.0, 115000.0]]]}}, {"id": "174", "type": "Feature", "properties": {"easting": 353500.0, "northing": 115500.0, "gridsq": "X353Y115", "numresp": 8, "numpeople": 18.72, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[354000.0, 115000.0], [353000.0, 115000.0], [353000.0, 116000.0], [354000.0, 116000.0], [354000.0, 115000.0]]]}}, {"id": "175", "type": "Feature", "properties": {"easting": 355500.0, "northing": 115500.0, "gridsq": "X355Y115", "numresp": 129, "numpeople": 301.86, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[356000.0, 115000.0], [355000.0, 115000.0], [355000.0, 116000.0], [356000.0, 116000.0], [356000.0, 115000.0]]]}}, {"id": "176", "type": "Feature", "properties": {"easting": 363500.0, "northing": 115500.0, "gridsq": "X363Y115", "numresp": 6, "numpeople": 14.04, "numkeys": 0, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[364000.0, 115000.0], [363000.0, 115000.0], [363000.0, 116000.0], [364000.0, 116000.0], [364000.0, 115000.0]]]}}, {"id": "177", "type": "Feature", "properties": {"easting": 442500.0, "northing": 115500.0, "gridsq": "X442Y115", "numresp": 15, "numpeople": 35.1, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 115000.0], [442000.0, 115000.0], [442000.0, 116000.0], [443000.0, 116000.0], [443000.0, 115000.0]]]}}, {"id": "178", "type": "Feature", "properties": {"easting": 351500.0, "northing": 116500.0, "gridsq": "X351Y116", "numresp": 0, "numpeople": 0.0, "numkeys": 8, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[352000.0, 116000.0], [351000.0, 116000.0], [351000.0, 117000.0], [352000.0, 117000.0], [352000.0, 116000.0]]]}}, {"id": "179", "type": "Feature", "properties": {"easting": 354500.0, "northing": 116500.0, "gridsq": "X354Y116", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[355000.0, 116000.0], [354000.0, 116000.0], [354000.0, 117000.0], [355000.0, 117000.0], [355000.0, 116000.0]]]}}, {"id": "180", "type": "Feature", "properties": {"easting": 355500.0, "northing": 116500.0, "gridsq": "X355Y116", "numresp": 23, "numpeople": 53.82, "numkeys": 0, "numnonresp": 60, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[356000.0, 116000.0], [355000.0, 116000.0], [355000.0, 117000.0], [356000.0, 117000.0], [356000.0, 116000.0]]]}}, {"id": "181", "type": "Feature", "properties": {"easting": 363500.0, "northing": 116500.0, "gridsq": "X363Y116", "numresp": 64, "numpeople": 149.76, "numkeys": 1, "numnonresp": 52, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[364000.0, 116000.0], [363000.0, 116000.0], [363000.0, 117000.0], [364000.0, 117000.0], [364000.0, 116000.0]]]}}, {"id": "182", "type": "Feature", "properties": {"easting": 364500.0, "northing": 116500.0, "gridsq": "X364Y116", "numresp": 86, "numpeople": 201.24, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[365000.0, 116000.0], [364000.0, 116000.0], [364000.0, 117000.0], [365000.0, 117000.0], [365000.0, 116000.0]]]}}, {"id": "183", "type": "Feature", "properties": {"easting": 530500.0, "northing": 118500.0, "gridsq": "X530Y118", "numresp": 82, "numpeople": 191.88, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 118000.0], [530000.0, 118000.0], [530000.0, 119000.0], [531000.0, 119000.0], [531000.0, 118000.0]]]}}, {"id": "184", "type": "Feature", "properties": {"easting": 443500.0, "northing": 120500.0, "gridsq": "X443Y120", "numresp": 260, "numpeople": 608.4, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[444000.0, 120000.0], [443000.0, 120000.0], [443000.0, 121000.0], [444000.0, 121000.0], [444000.0, 120000.0]]]}}, {"id": "185", "type": "Feature", "properties": {"easting": 591500.0, "northing": 120500.0, "gridsq": "X591Y120", "numresp": 44, "numpeople": 102.96, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[592000.0, 120000.0], [591000.0, 120000.0], [591000.0, 121000.0], [592000.0, 121000.0], [592000.0, 120000.0]]]}}, {"id": "186", "type": "Feature", "properties": {"easting": 435500.0, "northing": 121500.0, "gridsq": "X435Y121", "numresp": 137, "numpeople": 320.58, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 121000.0], [435000.0, 121000.0], [435000.0, 122000.0], [436000.0, 122000.0], [436000.0, 121000.0]]]}}, {"id": "187", "type": "Feature", "properties": {"easting": 436500.0, "northing": 121500.0, "gridsq": "X436Y121", "numresp": 257, "numpeople": 601.38, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 121000.0], [436000.0, 121000.0], [436000.0, 122000.0], [437000.0, 122000.0], [437000.0, 121000.0]]]}}, {"id": "188", "type": "Feature", "properties": {"easting": 443500.0, "northing": 121500.0, "gridsq": "X443Y121", "numresp": 144, "numpeople": 336.96, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[444000.0, 121000.0], [443000.0, 121000.0], [443000.0, 122000.0], [444000.0, 122000.0], [444000.0, 121000.0]]]}}, {"id": "189", "type": "Feature", "properties": {"easting": 296500.0, "northing": 122500.0, "gridsq": "X296Y122", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[297000.0, 122000.0], [296000.0, 122000.0], [296000.0, 123000.0], [297000.0, 123000.0], [297000.0, 122000.0]]]}}, {"id": "190", "type": "Feature", "properties": {"easting": 474500.0, "northing": 123500.0, "gridsq": "X474Y123", "numresp": 129, "numpeople": 301.86, "numkeys": 1, "numnonresp": 54, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[475000.0, 123000.0], [474000.0, 123000.0], [474000.0, 124000.0], [475000.0, 124000.0], [475000.0, 123000.0]]]}}, {"id": "191", "type": "Feature", "properties": {"easting": 573500.0, "northing": 123500.0, "gridsq": "X573Y123", "numresp": 11, "numpeople": 25.74, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[574000.0, 123000.0], [573000.0, 123000.0], [573000.0, 124000.0], [574000.0, 124000.0], [574000.0, 123000.0]]]}}, {"id": "192", "type": "Feature", "properties": {"easting": 322500.0, "northing": 124500.0, "gridsq": "X322Y124", "numresp": 39, "numpeople": 91.26, "numkeys": 5, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[323000.0, 124000.0], [322000.0, 124000.0], [322000.0, 125000.0], [323000.0, 125000.0], [323000.0, 124000.0]]]}}, {"id": "193", "type": "Feature", "properties": {"easting": 324500.0, "northing": 124500.0, "gridsq": "X324Y124", "numresp": 112, "numpeople": 262.08, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[325000.0, 124000.0], [324000.0, 124000.0], [324000.0, 125000.0], [325000.0, 125000.0], [325000.0, 124000.0]]]}}, {"id": "194", "type": "Feature", "properties": {"easting": 325500.0, "northing": 124500.0, "gridsq": "X325Y124", "numresp": 30, "numpeople": 70.2, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[326000.0, 124000.0], [325000.0, 124000.0], [325000.0, 125000.0], [326000.0, 125000.0], [326000.0, 124000.0]]]}}, {"id": "195", "type": "Feature", "properties": {"easting": 532500.0, "northing": 124500.0, "gridsq": "X532Y124", "numresp": 121, "numpeople": 283.14, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 124000.0], [532000.0, 124000.0], [532000.0, 125000.0], [533000.0, 125000.0], [533000.0, 124000.0]]]}}, {"id": "196", "type": "Feature", "properties": {"easting": 533500.0, "northing": 124500.0, "gridsq": "X533Y124", "numresp": 107, "numpeople": 250.38, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 124000.0], [533000.0, 124000.0], [533000.0, 125000.0], [534000.0, 125000.0], [534000.0, 124000.0]]]}}, {"id": "197", "type": "Feature", "properties": {"easting": 319500.0, "northing": 125500.0, "gridsq": "X319Y125", "numresp": 156, "numpeople": 365.04, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[320000.0, 125000.0], [319000.0, 125000.0], [319000.0, 126000.0], [320000.0, 126000.0], [320000.0, 125000.0]]]}}, {"id": "198", "type": "Feature", "properties": {"easting": 322500.0, "northing": 125500.0, "gridsq": "X322Y125", "numresp": 107, "numpeople": 250.38, "numkeys": 3, "numnonresp": 71, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[323000.0, 125000.0], [322000.0, 125000.0], [322000.0, 126000.0], [323000.0, 126000.0], [323000.0, 125000.0]]]}}, {"id": "199", "type": "Feature", "properties": {"easting": 324500.0, "northing": 125500.0, "gridsq": "X324Y125", "numresp": 31, "numpeople": 72.54, "numkeys": 1, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[325000.0, 125000.0], [324000.0, 125000.0], [324000.0, 126000.0], [325000.0, 126000.0], [325000.0, 125000.0]]]}}, {"id": "200", "type": "Feature", "properties": {"easting": 339500.0, "northing": 125500.0, "gridsq": "X339Y125", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[340000.0, 125000.0], [339000.0, 125000.0], [339000.0, 126000.0], [340000.0, 126000.0], [340000.0, 125000.0]]]}}, {"id": "201", "type": "Feature", "properties": {"easting": 508500.0, "northing": 125500.0, "gridsq": "X508Y125", "numresp": 123, "numpeople": 287.82, "numkeys": 0, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 125000.0], [508000.0, 125000.0], [508000.0, 126000.0], [509000.0, 126000.0], [509000.0, 125000.0]]]}}, {"id": "202", "type": "Feature", "properties": {"easting": 516500.0, "northing": 125500.0, "gridsq": "X516Y125", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 125000.0], [516000.0, 125000.0], [516000.0, 126000.0], [517000.0, 126000.0], [517000.0, 125000.0]]]}}, {"id": "203", "type": "Feature", "properties": {"easting": 533500.0, "northing": 125500.0, "gridsq": "X533Y125", "numresp": 24, "numpeople": 56.16, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 125000.0], [533000.0, 125000.0], [533000.0, 126000.0], [534000.0, 126000.0], [534000.0, 125000.0]]]}}, {"id": "204", "type": "Feature", "properties": {"easting": 245500.0, "northing": 126500.0, "gridsq": "X245Y126", "numresp": 71, "numpeople": 166.14, "numkeys": 0, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[246000.0, 126000.0], [245000.0, 126000.0], [245000.0, 127000.0], [246000.0, 127000.0], [246000.0, 126000.0]]]}}, {"id": "205", "type": "Feature", "properties": {"easting": 344500.0, "northing": 126500.0, "gridsq": "X344Y126", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[345000.0, 126000.0], [344000.0, 126000.0], [344000.0, 127000.0], [345000.0, 127000.0], [345000.0, 126000.0]]]}}, {"id": "206", "type": "Feature", "properties": {"easting": 508500.0, "northing": 126500.0, "gridsq": "X508Y126", "numresp": 39, "numpeople": 91.26, "numkeys": 1, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 126000.0], [508000.0, 126000.0], [508000.0, 127000.0], [509000.0, 127000.0], [509000.0, 126000.0]]]}}, {"id": "207", "type": "Feature", "properties": {"easting": 515500.0, "northing": 126500.0, "gridsq": "X515Y126", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 126000.0], [515000.0, 126000.0], [515000.0, 127000.0], [516000.0, 127000.0], [516000.0, 126000.0]]]}}, {"id": "208", "type": "Feature", "properties": {"easting": 447500.0, "northing": 128500.0, "gridsq": "X447Y128", "numresp": 144, "numpeople": 336.96, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 128000.0], [447000.0, 128000.0], [447000.0, 129000.0], [448000.0, 129000.0], [448000.0, 128000.0]]]}}, {"id": "209", "type": "Feature", "properties": {"easting": 414500.0, "northing": 129500.0, "gridsq": "X414Y129", "numresp": 13, "numpeople": 30.42, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 129000.0], [414000.0, 129000.0], [414000.0, 130000.0], [415000.0, 130000.0], [415000.0, 129000.0]]]}}, {"id": "210", "type": "Feature", "properties": {"easting": 446500.0, "northing": 129500.0, "gridsq": "X446Y129", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[447000.0, 129000.0], [446000.0, 129000.0], [446000.0, 130000.0], [447000.0, 130000.0], [447000.0, 129000.0]]]}}, {"id": "211", "type": "Feature", "properties": {"easting": 448500.0, "northing": 129500.0, "gridsq": "X448Y129", "numresp": 77, "numpeople": 180.18, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 129000.0], [448000.0, 129000.0], [448000.0, 130000.0], [449000.0, 130000.0], [449000.0, 129000.0]]]}}, {"id": "212", "type": "Feature", "properties": {"easting": 414500.0, "northing": 130500.0, "gridsq": "X414Y130", "numresp": 25, "numpeople": 58.5, "numkeys": 0, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 130000.0], [414000.0, 130000.0], [414000.0, 131000.0], [415000.0, 131000.0], [415000.0, 130000.0]]]}}, {"id": "213", "type": "Feature", "properties": {"easting": 447500.0, "northing": 130500.0, "gridsq": "X447Y130", "numresp": 113, "numpeople": 264.42, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 130000.0], [447000.0, 130000.0], [447000.0, 131000.0], [448000.0, 131000.0], [448000.0, 130000.0]]]}}, {"id": "214", "type": "Feature", "properties": {"easting": 517500.0, "northing": 130500.0, "gridsq": "X517Y130", "numresp": 28, "numpeople": 65.52, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 130000.0], [517000.0, 130000.0], [517000.0, 131000.0], [518000.0, 131000.0], [518000.0, 130000.0]]]}}, {"id": "215", "type": "Feature", "properties": {"easting": 518500.0, "northing": 130500.0, "gridsq": "X518Y130", "numresp": 94, "numpeople": 219.96, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 130000.0], [518000.0, 130000.0], [518000.0, 131000.0], [519000.0, 131000.0], [519000.0, 130000.0]]]}}, {"id": "216", "type": "Feature", "properties": {"easting": 415500.0, "northing": 131500.0, "gridsq": "X415Y131", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 131000.0], [415000.0, 131000.0], [415000.0, 132000.0], [416000.0, 132000.0], [416000.0, 131000.0]]]}}, {"id": "217", "type": "Feature", "properties": {"easting": 256500.0, "northing": 132500.0, "gridsq": "X256Y132", "numresp": 167, "numpeople": 390.78, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[257000.0, 132000.0], [256000.0, 132000.0], [256000.0, 133000.0], [257000.0, 133000.0], [257000.0, 132000.0]]]}}, {"id": "218", "type": "Feature", "properties": {"easting": 489500.0, "northing": 132500.0, "gridsq": "X489Y132", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 132000.0], [489000.0, 132000.0], [489000.0, 133000.0], [490000.0, 133000.0], [490000.0, 132000.0]]]}}, {"id": "219", "type": "Feature", "properties": {"easting": 586500.0, "northing": 132500.0, "gridsq": "X586Y132", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[587000.0, 132000.0], [586000.0, 132000.0], [586000.0, 133000.0], [587000.0, 133000.0], [587000.0, 132000.0]]]}}, {"id": "220", "type": "Feature", "properties": {"easting": 255500.0, "northing": 133500.0, "gridsq": "X255Y133", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 85, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[256000.0, 133000.0], [255000.0, 133000.0], [255000.0, 134000.0], [256000.0, 134000.0], [256000.0, 133000.0]]]}}, {"id": "221", "type": "Feature", "properties": {"easting": 256500.0, "northing": 133500.0, "gridsq": "X256Y133", "numresp": 69, "numpeople": 161.46, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[257000.0, 133000.0], [256000.0, 133000.0], [256000.0, 134000.0], [257000.0, 134000.0], [257000.0, 133000.0]]]}}, {"id": "222", "type": "Feature", "properties": {"easting": 490500.0, "northing": 133500.0, "gridsq": "X490Y133", "numresp": 20, "numpeople": 46.8, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[491000.0, 133000.0], [490000.0, 133000.0], [490000.0, 134000.0], [491000.0, 134000.0], [491000.0, 133000.0]]]}}, {"id": "223", "type": "Feature", "properties": {"easting": 594500.0, "northing": 133500.0, "gridsq": "X594Y133", "numresp": 17, "numpeople": 39.78, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[595000.0, 133000.0], [594000.0, 133000.0], [594000.0, 134000.0], [595000.0, 134000.0], [595000.0, 133000.0]]]}}, {"id": "224", "type": "Feature", "properties": {"easting": 600500.0, "northing": 133500.0, "gridsq": "X600Y133", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[601000.0, 133000.0], [600000.0, 133000.0], [600000.0, 134000.0], [601000.0, 134000.0], [601000.0, 133000.0]]]}}, {"id": "225", "type": "Feature", "properties": {"easting": 526500.0, "northing": 134500.0, "gridsq": "X526Y134", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 134000.0], [526000.0, 134000.0], [526000.0, 135000.0], [527000.0, 135000.0], [527000.0, 134000.0]]]}}, {"id": "226", "type": "Feature", "properties": {"easting": 615500.0, "northing": 134500.0, "gridsq": "X615Y134", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[616000.0, 134000.0], [615000.0, 134000.0], [615000.0, 135000.0], [616000.0, 135000.0], [616000.0, 134000.0]]]}}, {"id": "227", "type": "Feature", "properties": {"easting": 616500.0, "northing": 134500.0, "gridsq": "X616Y134", "numresp": 73, "numpeople": 170.82, "numkeys": 3, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[617000.0, 134000.0], [616000.0, 134000.0], [616000.0, 135000.0], [617000.0, 135000.0], [617000.0, 134000.0]]]}}, {"id": "228", "type": "Feature", "properties": {"easting": 527500.0, "northing": 135500.0, "gridsq": "X527Y135", "numresp": 106, "numpeople": 248.04, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 135000.0], [527000.0, 135000.0], [527000.0, 136000.0], [528000.0, 136000.0], [528000.0, 135000.0]]]}}, {"id": "229", "type": "Feature", "properties": {"easting": 620500.0, "northing": 135500.0, "gridsq": "X620Y135", "numresp": 94, "numpeople": 219.96, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[621000.0, 135000.0], [620000.0, 135000.0], [620000.0, 136000.0], [621000.0, 136000.0], [621000.0, 135000.0]]]}}, {"id": "230", "type": "Feature", "properties": {"easting": 622500.0, "northing": 135500.0, "gridsq": "X622Y135", "numresp": 119, "numpeople": 278.46, "numkeys": 1, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 135000.0], [622000.0, 135000.0], [622000.0, 136000.0], [623000.0, 136000.0], [623000.0, 135000.0]]]}}, {"id": "231", "type": "Feature", "properties": {"easting": 248500.0, "northing": 136500.0, "gridsq": "X248Y136", "numresp": 51, "numpeople": 119.34, "numkeys": 2, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[249000.0, 136000.0], [248000.0, 136000.0], [248000.0, 137000.0], [249000.0, 137000.0], [249000.0, 136000.0]]]}}, {"id": "232", "type": "Feature", "properties": {"easting": 526500.0, "northing": 136500.0, "gridsq": "X526Y136", "numresp": 111, "numpeople": 259.74, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 136000.0], [526000.0, 136000.0], [526000.0, 137000.0], [527000.0, 137000.0], [527000.0, 136000.0]]]}}, {"id": "233", "type": "Feature", "properties": {"easting": 528500.0, "northing": 136500.0, "gridsq": "X528Y136", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 136000.0], [528000.0, 136000.0], [528000.0, 137000.0], [529000.0, 137000.0], [529000.0, 136000.0]]]}}, {"id": "234", "type": "Feature", "properties": {"easting": 622500.0, "northing": 136500.0, "gridsq": "X622Y136", "numresp": 543, "numpeople": 1270.62, "numkeys": 2, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 136000.0], [622000.0, 136000.0], [622000.0, 137000.0], [623000.0, 137000.0], [623000.0, 136000.0]]]}}, {"id": "235", "type": "Feature", "properties": {"easting": 623500.0, "northing": 136500.0, "gridsq": "X623Y136", "numresp": 188, "numpeople": 439.92, "numkeys": 2, "numnonresp": 77, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[624000.0, 136000.0], [623000.0, 136000.0], [623000.0, 137000.0], [624000.0, 137000.0], [624000.0, 136000.0]]]}}, {"id": "236", "type": "Feature", "properties": {"easting": 348500.0, "northing": 137500.0, "gridsq": "X348Y137", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[349000.0, 137000.0], [348000.0, 137000.0], [348000.0, 138000.0], [349000.0, 138000.0], [349000.0, 137000.0]]]}}, {"id": "237", "type": "Feature", "properties": {"easting": 525500.0, "northing": 137500.0, "gridsq": "X525Y137", "numresp": 190, "numpeople": 444.6, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 137000.0], [525000.0, 137000.0], [525000.0, 138000.0], [526000.0, 138000.0], [526000.0, 137000.0]]]}}, {"id": "238", "type": "Feature", "properties": {"easting": 526500.0, "northing": 137500.0, "gridsq": "X526Y137", "numresp": 113, "numpeople": 264.42, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 137000.0], [526000.0, 137000.0], [526000.0, 138000.0], [527000.0, 138000.0], [527000.0, 137000.0]]]}}, {"id": "239", "type": "Feature", "properties": {"easting": 527500.0, "northing": 137500.0, "gridsq": "X527Y137", "numresp": 253, "numpeople": 592.02, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 137000.0], [527000.0, 137000.0], [527000.0, 138000.0], [528000.0, 138000.0], [528000.0, 137000.0]]]}}, {"id": "240", "type": "Feature", "properties": {"easting": 621500.0, "northing": 137500.0, "gridsq": "X621Y137", "numresp": 71, "numpeople": 166.14, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[622000.0, 137000.0], [621000.0, 137000.0], [621000.0, 138000.0], [622000.0, 138000.0], [622000.0, 137000.0]]]}}, {"id": "241", "type": "Feature", "properties": {"easting": 506500.0, "northing": 138500.0, "gridsq": "X506Y138", "numresp": 121, "numpeople": 283.14, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 138000.0], [506000.0, 138000.0], [506000.0, 139000.0], [507000.0, 139000.0], [507000.0, 138000.0]]]}}, {"id": "242", "type": "Feature", "properties": {"easting": 557500.0, "northing": 138500.0, "gridsq": "X557Y138", "numresp": 143, "numpeople": 334.62, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[558000.0, 138000.0], [557000.0, 138000.0], [557000.0, 139000.0], [558000.0, 139000.0], [558000.0, 138000.0]]]}}, {"id": "243", "type": "Feature", "properties": {"easting": 558500.0, "northing": 138500.0, "gridsq": "X558Y138", "numresp": 192, "numpeople": 449.28, "numkeys": 1, "numnonresp": 119, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 138000.0], [558000.0, 138000.0], [558000.0, 139000.0], [559000.0, 139000.0], [559000.0, 138000.0]]]}}, {"id": "244", "type": "Feature", "properties": {"easting": 622500.0, "northing": 138500.0, "gridsq": "X622Y138", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 138000.0], [622000.0, 138000.0], [622000.0, 139000.0], [623000.0, 139000.0], [623000.0, 138000.0]]]}}, {"id": "245", "type": "Feature", "properties": {"easting": 471500.0, "northing": 139500.0, "gridsq": "X471Y139", "numresp": 62, "numpeople": 145.08, "numkeys": 0, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 139000.0], [471000.0, 139000.0], [471000.0, 140000.0], [472000.0, 140000.0], [472000.0, 139000.0]]]}}, {"id": "246", "type": "Feature", "properties": {"easting": 506500.0, "northing": 139500.0, "gridsq": "X506Y139", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 139000.0], [506000.0, 139000.0], [506000.0, 140000.0], [507000.0, 140000.0], [507000.0, 139000.0]]]}}, {"id": "247", "type": "Feature", "properties": {"easting": 558500.0, "northing": 139500.0, "gridsq": "X558Y139", "numresp": 69, "numpeople": 161.46, "numkeys": 1, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 139000.0], [558000.0, 139000.0], [558000.0, 140000.0], [559000.0, 140000.0], [559000.0, 139000.0]]]}}, {"id": "248", "type": "Feature", "properties": {"easting": 599500.0, "northing": 140500.0, "gridsq": "X599Y140", "numresp": 119, "numpeople": 278.46, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[600000.0, 140000.0], [599000.0, 140000.0], [599000.0, 141000.0], [600000.0, 141000.0], [600000.0, 140000.0]]]}}, {"id": "249", "type": "Feature", "properties": {"easting": 631500.0, "northing": 140500.0, "gridsq": "X631Y140", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[632000.0, 140000.0], [631000.0, 140000.0], [631000.0, 141000.0], [632000.0, 141000.0], [632000.0, 140000.0]]]}}, {"id": "250", "type": "Feature", "properties": {"easting": 559500.0, "northing": 141500.0, "gridsq": "X559Y141", "numresp": 122, "numpeople": 285.48, "numkeys": 1, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 141000.0], [559000.0, 141000.0], [559000.0, 142000.0], [560000.0, 142000.0], [560000.0, 141000.0]]]}}, {"id": "251", "type": "Feature", "properties": {"easting": 631500.0, "northing": 141500.0, "gridsq": "X631Y141", "numresp": 344, "numpeople": 804.96, "numkeys": 2, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[632000.0, 141000.0], [631000.0, 141000.0], [631000.0, 142000.0], [632000.0, 142000.0], [632000.0, 141000.0]]]}}, {"id": "252", "type": "Feature", "properties": {"easting": 632500.0, "northing": 141500.0, "gridsq": "X632Y141", "numresp": 92, "numpeople": 215.28, "numkeys": 1, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[633000.0, 141000.0], [632000.0, 141000.0], [632000.0, 142000.0], [633000.0, 142000.0], [633000.0, 141000.0]]]}}, {"id": "253", "type": "Feature", "properties": {"easting": 562500.0, "northing": 142500.0, "gridsq": "X562Y142", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 142000.0], [562000.0, 142000.0], [562000.0, 143000.0], [563000.0, 143000.0], [563000.0, 142000.0]]]}}, {"id": "254", "type": "Feature", "properties": {"easting": 599500.0, "northing": 142500.0, "gridsq": "X599Y142", "numresp": 13, "numpeople": 30.42, "numkeys": 0, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[600000.0, 142000.0], [599000.0, 142000.0], [599000.0, 143000.0], [600000.0, 143000.0], [600000.0, 142000.0]]]}}, {"id": "255", "type": "Feature", "properties": {"easting": 600500.0, "northing": 142500.0, "gridsq": "X600Y142", "numresp": 11, "numpeople": 25.74, "numkeys": 1, "numnonresp": 73, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[601000.0, 142000.0], [600000.0, 142000.0], [600000.0, 143000.0], [601000.0, 143000.0], [601000.0, 142000.0]]]}}, {"id": "256", "type": "Feature", "properties": {"easting": 601500.0, "northing": 142500.0, "gridsq": "X601Y142", "numresp": 11, "numpeople": 25.74, "numkeys": 3, "numnonresp": 47, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[602000.0, 142000.0], [601000.0, 142000.0], [601000.0, 143000.0], [602000.0, 143000.0], [602000.0, 142000.0]]]}}, {"id": "257", "type": "Feature", "properties": {"easting": 630500.0, "northing": 142500.0, "gridsq": "X630Y142", "numresp": 102, "numpeople": 238.68, "numkeys": 4, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[631000.0, 142000.0], [630000.0, 142000.0], [630000.0, 143000.0], [631000.0, 143000.0], [631000.0, 142000.0]]]}}, {"id": "258", "type": "Feature", "properties": {"easting": 361500.0, "northing": 143500.0, "gridsq": "X361Y143", "numresp": 115, "numpeople": 269.1, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[362000.0, 143000.0], [361000.0, 143000.0], [361000.0, 144000.0], [362000.0, 144000.0], [362000.0, 143000.0]]]}}, {"id": "259", "type": "Feature", "properties": {"easting": 497500.0, "northing": 143500.0, "gridsq": "X497Y143", "numresp": 119, "numpeople": 278.46, "numkeys": 0, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[498000.0, 143000.0], [497000.0, 143000.0], [497000.0, 144000.0], [498000.0, 144000.0], [498000.0, 143000.0]]]}}, {"id": "260", "type": "Feature", "properties": {"easting": 531500.0, "northing": 143500.0, "gridsq": "X531Y143", "numresp": 226, "numpeople": 528.84, "numkeys": 4, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 143000.0], [531000.0, 143000.0], [531000.0, 144000.0], [532000.0, 144000.0], [532000.0, 143000.0]]]}}, {"id": "261", "type": "Feature", "properties": {"easting": 629500.0, "northing": 143500.0, "gridsq": "X629Y143", "numresp": 91, "numpeople": 212.94, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[630000.0, 143000.0], [629000.0, 143000.0], [629000.0, 144000.0], [630000.0, 144000.0], [630000.0, 143000.0]]]}}, {"id": "262", "type": "Feature", "properties": {"easting": 297500.0, "northing": 145500.0, "gridsq": "X297Y145", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[298000.0, 145000.0], [297000.0, 145000.0], [297000.0, 146000.0], [298000.0, 146000.0], [298000.0, 145000.0]]]}}, {"id": "263", "type": "Feature", "properties": {"easting": 354500.0, "northing": 145500.0, "gridsq": "X354Y145", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[355000.0, 145000.0], [354000.0, 145000.0], [354000.0, 146000.0], [355000.0, 146000.0], [355000.0, 145000.0]]]}}, {"id": "264", "type": "Feature", "properties": {"easting": 387500.0, "northing": 145500.0, "gridsq": "X387Y145", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 145000.0], [387000.0, 145000.0], [387000.0, 146000.0], [388000.0, 146000.0], [388000.0, 145000.0]]]}}, {"id": "265", "type": "Feature", "properties": {"easting": 436500.0, "northing": 145500.0, "gridsq": "X436Y145", "numresp": 132, "numpeople": 308.88, "numkeys": 0, "numnonresp": 85, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 145000.0], [436000.0, 145000.0], [436000.0, 146000.0], [437000.0, 146000.0], [437000.0, 145000.0]]]}}, {"id": "266", "type": "Feature", "properties": {"easting": 497500.0, "northing": 145500.0, "gridsq": "X497Y145", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[498000.0, 145000.0], [497000.0, 145000.0], [497000.0, 146000.0], [498000.0, 146000.0], [498000.0, 145000.0]]]}}, {"id": "267", "type": "Feature", "properties": {"easting": 528500.0, "northing": 145500.0, "gridsq": "X528Y145", "numresp": 1, "numpeople": 2.34, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 145000.0], [528000.0, 145000.0], [528000.0, 146000.0], [529000.0, 146000.0], [529000.0, 145000.0]]]}}, {"id": "268", "type": "Feature", "properties": {"easting": 558500.0, "northing": 145500.0, "gridsq": "X558Y145", "numresp": 57, "numpeople": 133.38, "numkeys": 4, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 145000.0], [558000.0, 145000.0], [558000.0, 146000.0], [559000.0, 146000.0], [559000.0, 145000.0]]]}}, {"id": "269", "type": "Feature", "properties": {"easting": 566500.0, "northing": 145500.0, "gridsq": "X566Y145", "numresp": 49, "numpeople": 114.66, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[567000.0, 145000.0], [566000.0, 145000.0], [566000.0, 146000.0], [567000.0, 146000.0], [567000.0, 145000.0]]]}}, {"id": "270", "type": "Feature", "properties": {"easting": 567500.0, "northing": 145500.0, "gridsq": "X567Y145", "numresp": 107, "numpeople": 250.38, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[568000.0, 145000.0], [567000.0, 145000.0], [567000.0, 146000.0], [568000.0, 146000.0], [568000.0, 145000.0]]]}}, {"id": "271", "type": "Feature", "properties": {"easting": 288500.0, "northing": 146500.0, "gridsq": "X288Y146", "numresp": 53, "numpeople": 124.02, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[289000.0, 146000.0], [288000.0, 146000.0], [288000.0, 147000.0], [289000.0, 147000.0], [289000.0, 146000.0]]]}}, {"id": "272", "type": "Feature", "properties": {"easting": 296500.0, "northing": 146500.0, "gridsq": "X296Y146", "numresp": 84, "numpeople": 196.56, "numkeys": 2, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[297000.0, 146000.0], [296000.0, 146000.0], [296000.0, 147000.0], [297000.0, 147000.0], [297000.0, 146000.0]]]}}, {"id": "273", "type": "Feature", "properties": {"easting": 297500.0, "northing": 146500.0, "gridsq": "X297Y146", "numresp": 123, "numpeople": 287.82, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[298000.0, 146000.0], [297000.0, 146000.0], [297000.0, 147000.0], [298000.0, 147000.0], [298000.0, 146000.0]]]}}, {"id": "274", "type": "Feature", "properties": {"easting": 377500.0, "northing": 146500.0, "gridsq": "X377Y146", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 146000.0], [377000.0, 146000.0], [377000.0, 147000.0], [378000.0, 147000.0], [378000.0, 146000.0]]]}}, {"id": "275", "type": "Feature", "properties": {"easting": 483500.0, "northing": 146500.0, "gridsq": "X483Y146", "numresp": 50, "numpeople": 117.0, "numkeys": 1, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[484000.0, 146000.0], [483000.0, 146000.0], [483000.0, 147000.0], [484000.0, 147000.0], [484000.0, 146000.0]]]}}, {"id": "276", "type": "Feature", "properties": {"easting": 484500.0, "northing": 146500.0, "gridsq": "X484Y146", "numresp": 62, "numpeople": 145.08, "numkeys": 2, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 146000.0], [484000.0, 146000.0], [484000.0, 147000.0], [485000.0, 147000.0], [485000.0, 146000.0]]]}}, {"id": "277", "type": "Feature", "properties": {"easting": 544500.0, "northing": 146500.0, "gridsq": "X544Y146", "numresp": 86, "numpeople": 201.24, "numkeys": 3, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 146000.0], [544000.0, 146000.0], [544000.0, 147000.0], [545000.0, 147000.0], [545000.0, 146000.0]]]}}, {"id": "278", "type": "Feature", "properties": {"easting": 558500.0, "northing": 146500.0, "gridsq": "X558Y146", "numresp": 29, "numpeople": 67.86, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 146000.0], [558000.0, 146000.0], [558000.0, 147000.0], [559000.0, 147000.0], [559000.0, 146000.0]]]}}, {"id": "279", "type": "Feature", "properties": {"easting": 634500.0, "northing": 146500.0, "gridsq": "X634Y146", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[635000.0, 146000.0], [634000.0, 146000.0], [634000.0, 147000.0], [635000.0, 147000.0], [635000.0, 146000.0]]]}}, {"id": "280", "type": "Feature", "properties": {"easting": 251500.0, "northing": 147500.0, "gridsq": "X251Y147", "numresp": 130, "numpeople": 304.2, "numkeys": 1, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[252000.0, 147000.0], [251000.0, 147000.0], [251000.0, 148000.0], [252000.0, 148000.0], [252000.0, 147000.0]]]}}, {"id": "281", "type": "Feature", "properties": {"easting": 343500.0, "northing": 147500.0, "gridsq": "X343Y147", "numresp": 49, "numpeople": 114.66, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[344000.0, 147000.0], [343000.0, 147000.0], [343000.0, 148000.0], [344000.0, 148000.0], [344000.0, 147000.0]]]}}, {"id": "282", "type": "Feature", "properties": {"easting": 544500.0, "northing": 147500.0, "gridsq": "X544Y147", "numresp": 156, "numpeople": 365.04, "numkeys": 1, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 147000.0], [544000.0, 147000.0], [544000.0, 148000.0], [545000.0, 148000.0], [545000.0, 147000.0]]]}}, {"id": "283", "type": "Feature", "properties": {"easting": 557500.0, "northing": 147500.0, "gridsq": "X557Y147", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[558000.0, 147000.0], [557000.0, 147000.0], [557000.0, 148000.0], [558000.0, 148000.0], [558000.0, 147000.0]]]}}, {"id": "284", "type": "Feature", "properties": {"easting": 377500.0, "northing": 148500.0, "gridsq": "X377Y148", "numresp": 132, "numpeople": 308.88, "numkeys": 3, "numnonresp": 106, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 148000.0], [377000.0, 148000.0], [377000.0, 149000.0], [378000.0, 149000.0], [378000.0, 148000.0]]]}}, {"id": "285", "type": "Feature", "properties": {"easting": 485500.0, "northing": 148500.0, "gridsq": "X485Y148", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 148000.0], [485000.0, 148000.0], [485000.0, 149000.0], [486000.0, 149000.0], [486000.0, 148000.0]]]}}, {"id": "286", "type": "Feature", "properties": {"easting": 516500.0, "northing": 148500.0, "gridsq": "X516Y148", "numresp": 116, "numpeople": 271.44, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 148000.0], [516000.0, 148000.0], [516000.0, 149000.0], [517000.0, 149000.0], [517000.0, 148000.0]]]}}, {"id": "287", "type": "Feature", "properties": {"easting": 525500.0, "northing": 148500.0, "gridsq": "X525Y148", "numresp": 115, "numpeople": 269.1, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 148000.0], [525000.0, 148000.0], [525000.0, 149000.0], [526000.0, 149000.0], [526000.0, 148000.0]]]}}, {"id": "288", "type": "Feature", "properties": {"easting": 461500.0, "northing": 149500.0, "gridsq": "X461Y149", "numresp": 122, "numpeople": 285.48, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 149000.0], [461000.0, 149000.0], [461000.0, 150000.0], [462000.0, 150000.0], [462000.0, 149000.0]]]}}, {"id": "289", "type": "Feature", "properties": {"easting": 488500.0, "northing": 149500.0, "gridsq": "X488Y149", "numresp": 110, "numpeople": 257.4, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 149000.0], [488000.0, 149000.0], [488000.0, 150000.0], [489000.0, 150000.0], [489000.0, 149000.0]]]}}, {"id": "290", "type": "Feature", "properties": {"easting": 498500.0, "northing": 149500.0, "gridsq": "X498Y149", "numresp": 126, "numpeople": 294.84, "numkeys": 3, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 149000.0], [498000.0, 149000.0], [498000.0, 150000.0], [499000.0, 150000.0], [499000.0, 149000.0]]]}}, {"id": "291", "type": "Feature", "properties": {"easting": 499500.0, "northing": 149500.0, "gridsq": "X499Y149", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 131, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 149000.0], [499000.0, 149000.0], [499000.0, 150000.0], [500000.0, 150000.0], [500000.0, 149000.0]]]}}, {"id": "292", "type": "Feature", "properties": {"easting": 500500.0, "northing": 149500.0, "gridsq": "X500Y149", "numresp": 210, "numpeople": 491.4, "numkeys": 1, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[501000.0, 149000.0], [500000.0, 149000.0], [500000.0, 150000.0], [501000.0, 150000.0], [501000.0, 149000.0]]]}}, {"id": "293", "type": "Feature", "properties": {"easting": 516500.0, "northing": 149500.0, "gridsq": "X516Y149", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 49, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 149000.0], [516000.0, 149000.0], [516000.0, 150000.0], [517000.0, 150000.0], [517000.0, 149000.0]]]}}, {"id": "294", "type": "Feature", "properties": {"easting": 525500.0, "northing": 149500.0, "gridsq": "X525Y149", "numresp": 20, "numpeople": 46.8, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 149000.0], [525000.0, 149000.0], [525000.0, 150000.0], [526000.0, 150000.0], [526000.0, 149000.0]]]}}, {"id": "295", "type": "Feature", "properties": {"easting": 526500.0, "northing": 149500.0, "gridsq": "X526Y149", "numresp": 56, "numpeople": 131.04, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 149000.0], [526000.0, 149000.0], [526000.0, 150000.0], [527000.0, 150000.0], [527000.0, 149000.0]]]}}, {"id": "296", "type": "Feature", "properties": {"easting": 559500.0, "northing": 149500.0, "gridsq": "X559Y149", "numresp": 102, "numpeople": 238.68, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 149000.0], [559000.0, 149000.0], [559000.0, 150000.0], [560000.0, 150000.0], [560000.0, 149000.0]]]}}, {"id": "297", "type": "Feature", "properties": {"easting": 426500.0, "northing": 150500.0, "gridsq": "X426Y150", "numresp": 99, "numpeople": 231.66, "numkeys": 1, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[427000.0, 150000.0], [426000.0, 150000.0], [426000.0, 151000.0], [427000.0, 151000.0], [427000.0, 150000.0]]]}}, {"id": "298", "type": "Feature", "properties": {"easting": 462500.0, "northing": 150500.0, "gridsq": "X462Y150", "numresp": 100, "numpeople": 234.0, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[463000.0, 150000.0], [462000.0, 150000.0], [462000.0, 151000.0], [463000.0, 151000.0], [463000.0, 150000.0]]]}}, {"id": "299", "type": "Feature", "properties": {"easting": 478500.0, "northing": 150500.0, "gridsq": "X478Y150", "numresp": 3, "numpeople": 7.02, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[479000.0, 150000.0], [478000.0, 150000.0], [478000.0, 151000.0], [479000.0, 151000.0], [479000.0, 150000.0]]]}}, {"id": "300", "type": "Feature", "properties": {"easting": 486500.0, "northing": 150500.0, "gridsq": "X486Y150", "numresp": 173, "numpeople": 404.82, "numkeys": 0, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 150000.0], [486000.0, 150000.0], [486000.0, 151000.0], [487000.0, 151000.0], [487000.0, 150000.0]]]}}, {"id": "301", "type": "Feature", "properties": {"easting": 487500.0, "northing": 150500.0, "gridsq": "X487Y150", "numresp": 149, "numpeople": 348.66, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 150000.0], [487000.0, 150000.0], [487000.0, 151000.0], [488000.0, 151000.0], [488000.0, 150000.0]]]}}, {"id": "302", "type": "Feature", "properties": {"easting": 488500.0, "northing": 150500.0, "gridsq": "X488Y150", "numresp": 6, "numpeople": 14.04, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 150000.0], [488000.0, 150000.0], [488000.0, 151000.0], [489000.0, 151000.0], [489000.0, 150000.0]]]}}, {"id": "303", "type": "Feature", "properties": {"easting": 489500.0, "northing": 150500.0, "gridsq": "X489Y150", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 150000.0], [489000.0, 150000.0], [489000.0, 151000.0], [490000.0, 151000.0], [490000.0, 150000.0]]]}}, {"id": "304", "type": "Feature", "properties": {"easting": 501500.0, "northing": 150500.0, "gridsq": "X501Y150", "numresp": 105, "numpeople": 245.7, "numkeys": 4, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[502000.0, 150000.0], [501000.0, 150000.0], [501000.0, 151000.0], [502000.0, 151000.0], [502000.0, 150000.0]]]}}, {"id": "305", "type": "Feature", "properties": {"easting": 525500.0, "northing": 150500.0, "gridsq": "X525Y150", "numresp": 158, "numpeople": 369.72, "numkeys": 5, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 150000.0], [525000.0, 150000.0], [525000.0, 151000.0], [526000.0, 151000.0], [526000.0, 150000.0]]]}}, {"id": "306", "type": "Feature", "properties": {"easting": 526500.0, "northing": 150500.0, "gridsq": "X526Y150", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 150000.0], [526000.0, 150000.0], [526000.0, 151000.0], [527000.0, 151000.0], [527000.0, 150000.0]]]}}, {"id": "307", "type": "Feature", "properties": {"easting": 527500.0, "northing": 150500.0, "gridsq": "X527Y150", "numresp": 114, "numpeople": 266.76, "numkeys": 2, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 150000.0], [527000.0, 150000.0], [527000.0, 151000.0], [528000.0, 151000.0], [528000.0, 150000.0]]]}}, {"id": "308", "type": "Feature", "properties": {"easting": 460500.0, "northing": 151500.0, "gridsq": "X460Y151", "numresp": 175, "numpeople": 409.5, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 151000.0], [460000.0, 151000.0], [460000.0, 152000.0], [461000.0, 152000.0], [461000.0, 151000.0]]]}}, {"id": "309", "type": "Feature", "properties": {"easting": 463500.0, "northing": 151500.0, "gridsq": "X463Y151", "numresp": 174, "numpeople": 407.16, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[464000.0, 151000.0], [463000.0, 151000.0], [463000.0, 152000.0], [464000.0, 152000.0], [464000.0, 151000.0]]]}}, {"id": "310", "type": "Feature", "properties": {"easting": 480500.0, "northing": 151500.0, "gridsq": "X480Y151", "numresp": 135, "numpeople": 315.9, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 151000.0], [480000.0, 151000.0], [480000.0, 152000.0], [481000.0, 152000.0], [481000.0, 151000.0]]]}}, {"id": "311", "type": "Feature", "properties": {"easting": 501500.0, "northing": 151500.0, "gridsq": "X501Y151", "numresp": 227, "numpeople": 531.18, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[502000.0, 151000.0], [501000.0, 151000.0], [501000.0, 152000.0], [502000.0, 152000.0], [502000.0, 151000.0]]]}}, {"id": "312", "type": "Feature", "properties": {"easting": 528500.0, "northing": 151500.0, "gridsq": "X528Y151", "numresp": 102, "numpeople": 238.68, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 151000.0], [528000.0, 151000.0], [528000.0, 152000.0], [529000.0, 152000.0], [529000.0, 151000.0]]]}}, {"id": "313", "type": "Feature", "properties": {"easting": 636500.0, "northing": 151500.0, "gridsq": "X636Y151", "numresp": 160, "numpeople": 374.4, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[637000.0, 151000.0], [636000.0, 151000.0], [636000.0, 152000.0], [637000.0, 152000.0], [637000.0, 151000.0]]]}}, {"id": "314", "type": "Feature", "properties": {"easting": 637500.0, "northing": 151500.0, "gridsq": "X637Y151", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[638000.0, 151000.0], [637000.0, 151000.0], [637000.0, 152000.0], [638000.0, 152000.0], [638000.0, 151000.0]]]}}, {"id": "315", "type": "Feature", "properties": {"easting": 463500.0, "northing": 152500.0, "gridsq": "X463Y152", "numresp": 85, "numpeople": 198.9, "numkeys": 0, "numnonresp": 71, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[464000.0, 152000.0], [463000.0, 152000.0], [463000.0, 153000.0], [464000.0, 153000.0], [464000.0, 152000.0]]]}}, {"id": "316", "type": "Feature", "properties": {"easting": 481500.0, "northing": 152500.0, "gridsq": "X481Y152", "numresp": 145, "numpeople": 339.3, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[482000.0, 152000.0], [481000.0, 152000.0], [481000.0, 153000.0], [482000.0, 153000.0], [482000.0, 152000.0]]]}}, {"id": "317", "type": "Feature", "properties": {"easting": 498500.0, "northing": 152500.0, "gridsq": "X498Y152", "numresp": 101, "numpeople": 236.34, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 152000.0], [498000.0, 152000.0], [498000.0, 153000.0], [499000.0, 153000.0], [499000.0, 152000.0]]]}}, {"id": "318", "type": "Feature", "properties": {"easting": 499500.0, "northing": 152500.0, "gridsq": "X499Y152", "numresp": 53, "numpeople": 124.02, "numkeys": 4, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 152000.0], [499000.0, 152000.0], [499000.0, 153000.0], [500000.0, 153000.0], [500000.0, 152000.0]]]}}, {"id": "319", "type": "Feature", "properties": {"easting": 501500.0, "northing": 152500.0, "gridsq": "X501Y152", "numresp": 94, "numpeople": 219.96, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[502000.0, 152000.0], [501000.0, 152000.0], [501000.0, 153000.0], [502000.0, 153000.0], [502000.0, 152000.0]]]}}, {"id": "320", "type": "Feature", "properties": {"easting": 637500.0, "northing": 152500.0, "gridsq": "X637Y152", "numresp": 59, "numpeople": 138.06, "numkeys": 1, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[638000.0, 152000.0], [637000.0, 152000.0], [637000.0, 153000.0], [638000.0, 153000.0], [638000.0, 152000.0]]]}}, {"id": "321", "type": "Feature", "properties": {"easting": 346500.0, "northing": 153500.0, "gridsq": "X346Y153", "numresp": 37, "numpeople": 86.58, "numkeys": 2, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[347000.0, 153000.0], [346000.0, 153000.0], [346000.0, 154000.0], [347000.0, 154000.0], [347000.0, 153000.0]]]}}, {"id": "322", "type": "Feature", "properties": {"easting": 366500.0, "northing": 153500.0, "gridsq": "X366Y153", "numresp": 34, "numpeople": 79.56, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 153000.0], [366000.0, 153000.0], [366000.0, 154000.0], [367000.0, 154000.0], [367000.0, 153000.0]]]}}, {"id": "323", "type": "Feature", "properties": {"easting": 385500.0, "northing": 153500.0, "gridsq": "X385Y153", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 153000.0], [385000.0, 153000.0], [385000.0, 154000.0], [386000.0, 154000.0], [386000.0, 153000.0]]]}}, {"id": "324", "type": "Feature", "properties": {"easting": 461500.0, "northing": 153500.0, "gridsq": "X461Y153", "numresp": 97, "numpeople": 226.98, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 153000.0], [461000.0, 153000.0], [461000.0, 154000.0], [462000.0, 154000.0], [462000.0, 153000.0]]]}}, {"id": "325", "type": "Feature", "properties": {"easting": 462500.0, "northing": 153500.0, "gridsq": "X462Y153", "numresp": 162, "numpeople": 379.08, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[463000.0, 153000.0], [462000.0, 153000.0], [462000.0, 154000.0], [463000.0, 154000.0], [463000.0, 153000.0]]]}}, {"id": "326", "type": "Feature", "properties": {"easting": 465500.0, "northing": 153500.0, "gridsq": "X465Y153", "numresp": 97, "numpeople": 226.98, "numkeys": 1, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[466000.0, 153000.0], [465000.0, 153000.0], [465000.0, 154000.0], [466000.0, 154000.0], [466000.0, 153000.0]]]}}, {"id": "327", "type": "Feature", "properties": {"easting": 577500.0, "northing": 153500.0, "gridsq": "X577Y153", "numresp": 135, "numpeople": 315.9, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 153000.0], [577000.0, 153000.0], [577000.0, 154000.0], [578000.0, 154000.0], [578000.0, 153000.0]]]}}, {"id": "328", "type": "Feature", "properties": {"easting": 366500.0, "northing": 154500.0, "gridsq": "X366Y154", "numresp": 44, "numpeople": 102.96, "numkeys": 1, "numnonresp": 66, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 154000.0], [366000.0, 154000.0], [366000.0, 155000.0], [367000.0, 155000.0], [367000.0, 154000.0]]]}}, {"id": "329", "type": "Feature", "properties": {"easting": 368500.0, "northing": 154500.0, "gridsq": "X368Y154", "numresp": 14, "numpeople": 32.76, "numkeys": 3, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 154000.0], [368000.0, 154000.0], [368000.0, 155000.0], [369000.0, 155000.0], [369000.0, 154000.0]]]}}, {"id": "330", "type": "Feature", "properties": {"easting": 369500.0, "northing": 154500.0, "gridsq": "X369Y154", "numresp": 40, "numpeople": 93.6, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 154000.0], [369000.0, 154000.0], [369000.0, 155000.0], [370000.0, 155000.0], [370000.0, 154000.0]]]}}, {"id": "331", "type": "Feature", "properties": {"easting": 464500.0, "northing": 154500.0, "gridsq": "X464Y154", "numresp": 170, "numpeople": 397.8, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[465000.0, 154000.0], [464000.0, 154000.0], [464000.0, 155000.0], [465000.0, 155000.0], [465000.0, 154000.0]]]}}, {"id": "332", "type": "Feature", "properties": {"easting": 480500.0, "northing": 154500.0, "gridsq": "X480Y154", "numresp": 31, "numpeople": 72.54, "numkeys": 1, "numnonresp": 76, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 154000.0], [480000.0, 154000.0], [480000.0, 155000.0], [481000.0, 155000.0], [481000.0, 154000.0]]]}}, {"id": "333", "type": "Feature", "properties": {"easting": 481500.0, "northing": 154500.0, "gridsq": "X481Y154", "numresp": 106, "numpeople": 248.04, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[482000.0, 154000.0], [481000.0, 154000.0], [481000.0, 155000.0], [482000.0, 155000.0], [482000.0, 154000.0]]]}}, {"id": "334", "type": "Feature", "properties": {"easting": 488500.0, "northing": 154500.0, "gridsq": "X488Y154", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 154000.0], [488000.0, 154000.0], [488000.0, 155000.0], [489000.0, 155000.0], [489000.0, 154000.0]]]}}, {"id": "335", "type": "Feature", "properties": {"easting": 508500.0, "northing": 154500.0, "gridsq": "X508Y154", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 154000.0], [508000.0, 154000.0], [508000.0, 155000.0], [509000.0, 155000.0], [509000.0, 154000.0]]]}}, {"id": "336", "type": "Feature", "properties": {"easting": 513500.0, "northing": 154500.0, "gridsq": "X513Y154", "numresp": 103, "numpeople": 241.02, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 154000.0], [513000.0, 154000.0], [513000.0, 155000.0], [514000.0, 155000.0], [514000.0, 154000.0]]]}}, {"id": "337", "type": "Feature", "properties": {"easting": 544500.0, "northing": 154500.0, "gridsq": "X544Y154", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 154000.0], [544000.0, 154000.0], [544000.0, 155000.0], [545000.0, 155000.0], [545000.0, 154000.0]]]}}, {"id": "338", "type": "Feature", "properties": {"easting": 575500.0, "northing": 154500.0, "gridsq": "X575Y154", "numresp": 143, "numpeople": 334.62, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 154000.0], [575000.0, 154000.0], [575000.0, 155000.0], [576000.0, 155000.0], [576000.0, 154000.0]]]}}, {"id": "339", "type": "Feature", "properties": {"easting": 577500.0, "northing": 154500.0, "gridsq": "X577Y154", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 154000.0], [577000.0, 154000.0], [577000.0, 155000.0], [578000.0, 155000.0], [578000.0, 154000.0]]]}}, {"id": "340", "type": "Feature", "properties": {"easting": 480500.0, "northing": 155500.0, "gridsq": "X480Y155", "numresp": 119, "numpeople": 278.46, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 155000.0], [480000.0, 155000.0], [480000.0, 156000.0], [481000.0, 156000.0], [481000.0, 155000.0]]]}}, {"id": "341", "type": "Feature", "properties": {"easting": 486500.0, "northing": 155500.0, "gridsq": "X486Y155", "numresp": 132, "numpeople": 308.88, "numkeys": 10, "numnonresp": 112, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 155000.0], [486000.0, 155000.0], [486000.0, 156000.0], [487000.0, 156000.0], [487000.0, 155000.0]]]}}, {"id": "342", "type": "Feature", "properties": {"easting": 487500.0, "northing": 155500.0, "gridsq": "X487Y155", "numresp": 56, "numpeople": 131.04, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 155000.0], [487000.0, 155000.0], [487000.0, 156000.0], [488000.0, 156000.0], [488000.0, 155000.0]]]}}, {"id": "343", "type": "Feature", "properties": {"easting": 512500.0, "northing": 155500.0, "gridsq": "X512Y155", "numresp": 59, "numpeople": 138.06, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 155000.0], [512000.0, 155000.0], [512000.0, 156000.0], [513000.0, 156000.0], [513000.0, 155000.0]]]}}, {"id": "344", "type": "Feature", "properties": {"easting": 534500.0, "northing": 155500.0, "gridsq": "X534Y155", "numresp": 24, "numpeople": 56.16, "numkeys": 0, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 155000.0], [534000.0, 155000.0], [534000.0, 156000.0], [535000.0, 156000.0], [535000.0, 155000.0]]]}}, {"id": "345", "type": "Feature", "properties": {"easting": 575500.0, "northing": 155500.0, "gridsq": "X575Y155", "numresp": 171, "numpeople": 400.14, "numkeys": 3, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 155000.0], [575000.0, 155000.0], [575000.0, 156000.0], [576000.0, 156000.0], [576000.0, 155000.0]]]}}, {"id": "346", "type": "Feature", "properties": {"easting": 576500.0, "northing": 155500.0, "gridsq": "X576Y155", "numresp": 120, "numpeople": 280.8, "numkeys": 1, "numnonresp": 235, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 155000.0], [576000.0, 155000.0], [576000.0, 156000.0], [577000.0, 156000.0], [577000.0, 155000.0]]]}}, {"id": "347", "type": "Feature", "properties": {"easting": 486500.0, "northing": 156500.0, "gridsq": "X486Y156", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 156000.0], [486000.0, 156000.0], [486000.0, 157000.0], [487000.0, 157000.0], [487000.0, 156000.0]]]}}, {"id": "348", "type": "Feature", "properties": {"easting": 487500.0, "northing": 156500.0, "gridsq": "X487Y156", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 156000.0], [487000.0, 156000.0], [487000.0, 157000.0], [488000.0, 157000.0], [488000.0, 156000.0]]]}}, {"id": "349", "type": "Feature", "properties": {"easting": 514500.0, "northing": 156500.0, "gridsq": "X514Y156", "numresp": 130, "numpeople": 304.2, "numkeys": 1, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 156000.0], [514000.0, 156000.0], [514000.0, 157000.0], [515000.0, 157000.0], [515000.0, 156000.0]]]}}, {"id": "350", "type": "Feature", "properties": {"easting": 515500.0, "northing": 156500.0, "gridsq": "X515Y156", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 156000.0], [515000.0, 156000.0], [515000.0, 157000.0], [516000.0, 157000.0], [516000.0, 156000.0]]]}}, {"id": "351", "type": "Feature", "properties": {"easting": 516500.0, "northing": 156500.0, "gridsq": "X516Y156", "numresp": 64, "numpeople": 149.76, "numkeys": 1, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 156000.0], [516000.0, 156000.0], [516000.0, 157000.0], [517000.0, 157000.0], [517000.0, 156000.0]]]}}, {"id": "352", "type": "Feature", "properties": {"easting": 576500.0, "northing": 156500.0, "gridsq": "X576Y156", "numresp": 138, "numpeople": 322.92, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 156000.0], [576000.0, 156000.0], [576000.0, 157000.0], [577000.0, 157000.0], [577000.0, 156000.0]]]}}, {"id": "353", "type": "Feature", "properties": {"easting": 629500.0, "northing": 156500.0, "gridsq": "X629Y156", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[630000.0, 156000.0], [629000.0, 156000.0], [629000.0, 157000.0], [630000.0, 157000.0], [630000.0, 156000.0]]]}}, {"id": "354", "type": "Feature", "properties": {"easting": 385500.0, "northing": 157500.0, "gridsq": "X385Y157", "numresp": 62, "numpeople": 145.08, "numkeys": 0, "numnonresp": 92, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 157000.0], [385000.0, 157000.0], [385000.0, 158000.0], [386000.0, 158000.0], [386000.0, 157000.0]]]}}, {"id": "355", "type": "Feature", "properties": {"easting": 485500.0, "northing": 157500.0, "gridsq": "X485Y157", "numresp": 100, "numpeople": 234.0, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 157000.0], [485000.0, 157000.0], [485000.0, 158000.0], [486000.0, 158000.0], [486000.0, 157000.0]]]}}, {"id": "356", "type": "Feature", "properties": {"easting": 487500.0, "northing": 157500.0, "gridsq": "X487Y157", "numresp": 90, "numpeople": 210.6, "numkeys": 2, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 157000.0], [487000.0, 157000.0], [487000.0, 158000.0], [488000.0, 158000.0], [488000.0, 157000.0]]]}}, {"id": "357", "type": "Feature", "properties": {"easting": 516500.0, "northing": 157500.0, "gridsq": "X516Y157", "numresp": 182, "numpeople": 425.88, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 157000.0], [516000.0, 157000.0], [516000.0, 158000.0], [517000.0, 158000.0], [517000.0, 157000.0]]]}}, {"id": "358", "type": "Feature", "properties": {"easting": 534500.0, "northing": 157500.0, "gridsq": "X534Y157", "numresp": 179, "numpeople": 418.86, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 157000.0], [534000.0, 157000.0], [534000.0, 158000.0], [535000.0, 158000.0], [535000.0, 157000.0]]]}}, {"id": "359", "type": "Feature", "properties": {"easting": 614500.0, "northing": 157500.0, "gridsq": "X614Y157", "numresp": 134, "numpeople": 313.56, "numkeys": 0, "numnonresp": 59, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[615000.0, 157000.0], [614000.0, 157000.0], [614000.0, 158000.0], [615000.0, 158000.0], [615000.0, 157000.0]]]}}, {"id": "360", "type": "Feature", "properties": {"easting": 615500.0, "northing": 157500.0, "gridsq": "X615Y157", "numresp": 141, "numpeople": 329.94, "numkeys": 10, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[616000.0, 157000.0], [615000.0, 157000.0], [615000.0, 158000.0], [616000.0, 158000.0], [616000.0, 157000.0]]]}}, {"id": "361", "type": "Feature", "properties": {"easting": 616500.0, "northing": 157500.0, "gridsq": "X616Y157", "numresp": 17, "numpeople": 39.78, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[617000.0, 157000.0], [616000.0, 157000.0], [616000.0, 158000.0], [617000.0, 158000.0], [617000.0, 157000.0]]]}}, {"id": "362", "type": "Feature", "properties": {"easting": 486500.0, "northing": 158500.0, "gridsq": "X486Y158", "numresp": 167, "numpeople": 390.78, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 158000.0], [486000.0, 158000.0], [486000.0, 159000.0], [487000.0, 159000.0], [487000.0, 158000.0]]]}}, {"id": "363", "type": "Feature", "properties": {"easting": 487500.0, "northing": 158500.0, "gridsq": "X487Y158", "numresp": 104, "numpeople": 243.36, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 158000.0], [487000.0, 158000.0], [487000.0, 159000.0], [488000.0, 159000.0], [488000.0, 158000.0]]]}}, {"id": "364", "type": "Feature", "properties": {"easting": 496500.0, "northing": 158500.0, "gridsq": "X496Y158", "numresp": 110, "numpeople": 257.4, "numkeys": 0, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 158000.0], [496000.0, 158000.0], [496000.0, 159000.0], [497000.0, 159000.0], [497000.0, 158000.0]]]}}, {"id": "365", "type": "Feature", "properties": {"easting": 497500.0, "northing": 158500.0, "gridsq": "X497Y158", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[498000.0, 158000.0], [497000.0, 158000.0], [497000.0, 159000.0], [498000.0, 159000.0], [498000.0, 158000.0]]]}}, {"id": "366", "type": "Feature", "properties": {"easting": 498500.0, "northing": 158500.0, "gridsq": "X498Y158", "numresp": 189, "numpeople": 442.26, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 158000.0], [498000.0, 158000.0], [498000.0, 159000.0], [499000.0, 159000.0], [499000.0, 158000.0]]]}}, {"id": "367", "type": "Feature", "properties": {"easting": 499500.0, "northing": 158500.0, "gridsq": "X499Y158", "numresp": 186, "numpeople": 435.24, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 158000.0], [499000.0, 158000.0], [499000.0, 159000.0], [500000.0, 159000.0], [500000.0, 158000.0]]]}}, {"id": "368", "type": "Feature", "properties": {"easting": 517500.0, "northing": 158500.0, "gridsq": "X517Y158", "numresp": 113, "numpeople": 264.42, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 158000.0], [517000.0, 158000.0], [517000.0, 159000.0], [518000.0, 159000.0], [518000.0, 158000.0]]]}}, {"id": "369", "type": "Feature", "properties": {"easting": 518500.0, "northing": 158500.0, "gridsq": "X518Y158", "numresp": 66, "numpeople": 154.44, "numkeys": 2, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 158000.0], [518000.0, 158000.0], [518000.0, 159000.0], [519000.0, 159000.0], [519000.0, 158000.0]]]}}, {"id": "370", "type": "Feature", "properties": {"easting": 554500.0, "northing": 158500.0, "gridsq": "X554Y158", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[555000.0, 158000.0], [554000.0, 158000.0], [554000.0, 159000.0], [555000.0, 159000.0], [555000.0, 158000.0]]]}}, {"id": "371", "type": "Feature", "properties": {"easting": 572500.0, "northing": 158500.0, "gridsq": "X572Y158", "numresp": 91, "numpeople": 212.94, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[573000.0, 158000.0], [572000.0, 158000.0], [572000.0, 159000.0], [573000.0, 159000.0], [573000.0, 158000.0]]]}}, {"id": "372", "type": "Feature", "properties": {"easting": 614500.0, "northing": 158500.0, "gridsq": "X614Y158", "numresp": 265, "numpeople": 620.1, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[615000.0, 158000.0], [614000.0, 158000.0], [614000.0, 159000.0], [615000.0, 159000.0], [615000.0, 158000.0]]]}}, {"id": "373", "type": "Feature", "properties": {"easting": 615500.0, "northing": 158500.0, "gridsq": "X615Y158", "numresp": 168, "numpeople": 393.12, "numkeys": 5, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[616000.0, 158000.0], [615000.0, 158000.0], [615000.0, 159000.0], [616000.0, 159000.0], [616000.0, 158000.0]]]}}, {"id": "374", "type": "Feature", "properties": {"easting": 338500.0, "northing": 159500.0, "gridsq": "X338Y159", "numresp": 2, "numpeople": 4.68, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[339000.0, 159000.0], [338000.0, 159000.0], [338000.0, 160000.0], [339000.0, 160000.0], [339000.0, 159000.0]]]}}, {"id": "375", "type": "Feature", "properties": {"easting": 485500.0, "northing": 159500.0, "gridsq": "X485Y159", "numresp": 8, "numpeople": 18.72, "numkeys": 1, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 159000.0], [485000.0, 159000.0], [485000.0, 160000.0], [486000.0, 160000.0], [486000.0, 159000.0]]]}}, {"id": "376", "type": "Feature", "properties": {"easting": 486500.0, "northing": 159500.0, "gridsq": "X486Y159", "numresp": 59, "numpeople": 138.06, "numkeys": 2, "numnonresp": 114, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 159000.0], [486000.0, 159000.0], [486000.0, 160000.0], [487000.0, 160000.0], [487000.0, 159000.0]]]}}, {"id": "377", "type": "Feature", "properties": {"easting": 499500.0, "northing": 159500.0, "gridsq": "X499Y159", "numresp": 87, "numpeople": 203.58, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 159000.0], [499000.0, 159000.0], [499000.0, 160000.0], [500000.0, 160000.0], [500000.0, 159000.0]]]}}, {"id": "378", "type": "Feature", "properties": {"easting": 501500.0, "northing": 159500.0, "gridsq": "X501Y159", "numresp": 126, "numpeople": 294.84, "numkeys": 1, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[502000.0, 159000.0], [501000.0, 159000.0], [501000.0, 160000.0], [502000.0, 160000.0], [502000.0, 159000.0]]]}}, {"id": "379", "type": "Feature", "properties": {"easting": 520500.0, "northing": 159500.0, "gridsq": "X520Y159", "numresp": 36, "numpeople": 84.24, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 159000.0], [520000.0, 159000.0], [520000.0, 160000.0], [521000.0, 160000.0], [521000.0, 159000.0]]]}}, {"id": "380", "type": "Feature", "properties": {"easting": 528500.0, "northing": 159500.0, "gridsq": "X528Y159", "numresp": 131, "numpeople": 306.54, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 159000.0], [528000.0, 159000.0], [528000.0, 160000.0], [529000.0, 160000.0], [529000.0, 159000.0]]]}}, {"id": "381", "type": "Feature", "properties": {"easting": 529500.0, "northing": 159500.0, "gridsq": "X529Y159", "numresp": 246, "numpeople": 575.64, "numkeys": 1, "numnonresp": 78, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 159000.0], [529000.0, 159000.0], [529000.0, 160000.0], [530000.0, 160000.0], [530000.0, 159000.0]]]}}, {"id": "382", "type": "Feature", "properties": {"easting": 542500.0, "northing": 159500.0, "gridsq": "X542Y159", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 159000.0], [542000.0, 159000.0], [542000.0, 160000.0], [543000.0, 160000.0], [543000.0, 159000.0]]]}}, {"id": "383", "type": "Feature", "properties": {"easting": 487500.0, "northing": 160500.0, "gridsq": "X487Y160", "numresp": 129, "numpeople": 301.86, "numkeys": 0, "numnonresp": 150, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 160000.0], [487000.0, 160000.0], [487000.0, 161000.0], [488000.0, 161000.0], [488000.0, 160000.0]]]}}, {"id": "384", "type": "Feature", "properties": {"easting": 502500.0, "northing": 160500.0, "gridsq": "X502Y160", "numresp": 134, "numpeople": 313.56, "numkeys": 3, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 160000.0], [502000.0, 160000.0], [502000.0, 161000.0], [503000.0, 161000.0], [503000.0, 160000.0]]]}}, {"id": "385", "type": "Feature", "properties": {"easting": 520500.0, "northing": 160500.0, "gridsq": "X520Y160", "numresp": 114, "numpeople": 266.76, "numkeys": 6, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 160000.0], [520000.0, 160000.0], [520000.0, 161000.0], [521000.0, 161000.0], [521000.0, 160000.0]]]}}, {"id": "386", "type": "Feature", "properties": {"easting": 521500.0, "northing": 160500.0, "gridsq": "X521Y160", "numresp": 305, "numpeople": 713.7, "numkeys": 1, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 160000.0], [521000.0, 160000.0], [521000.0, 161000.0], [522000.0, 161000.0], [522000.0, 160000.0]]]}}, {"id": "387", "type": "Feature", "properties": {"easting": 530500.0, "northing": 160500.0, "gridsq": "X530Y160", "numresp": 190, "numpeople": 444.6, "numkeys": 3, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 160000.0], [530000.0, 160000.0], [530000.0, 161000.0], [531000.0, 161000.0], [531000.0, 160000.0]]]}}, {"id": "388", "type": "Feature", "properties": {"easting": 532500.0, "northing": 160500.0, "gridsq": "X532Y160", "numresp": 92, "numpeople": 215.28, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 160000.0], [532000.0, 160000.0], [532000.0, 161000.0], [533000.0, 161000.0], [533000.0, 160000.0]]]}}, {"id": "389", "type": "Feature", "properties": {"easting": 600500.0, "northing": 160500.0, "gridsq": "X600Y160", "numresp": 125, "numpeople": 292.5, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[601000.0, 160000.0], [600000.0, 160000.0], [600000.0, 161000.0], [601000.0, 161000.0], [601000.0, 160000.0]]]}}, {"id": "390", "type": "Feature", "properties": {"easting": 331500.0, "northing": 161500.0, "gridsq": "X331Y161", "numresp": 46, "numpeople": 107.64, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 161000.0], [331000.0, 161000.0], [331000.0, 162000.0], [332000.0, 162000.0], [332000.0, 161000.0]]]}}, {"id": "391", "type": "Feature", "properties": {"easting": 332500.0, "northing": 161500.0, "gridsq": "X332Y161", "numresp": 145, "numpeople": 339.3, "numkeys": 1, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 161000.0], [332000.0, 161000.0], [332000.0, 162000.0], [333000.0, 162000.0], [333000.0, 161000.0]]]}}, {"id": "392", "type": "Feature", "properties": {"easting": 459500.0, "northing": 161500.0, "gridsq": "X459Y161", "numresp": 53, "numpeople": 124.02, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 161000.0], [459000.0, 161000.0], [459000.0, 162000.0], [460000.0, 162000.0], [460000.0, 161000.0]]]}}, {"id": "393", "type": "Feature", "properties": {"easting": 460500.0, "northing": 161500.0, "gridsq": "X460Y161", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 161000.0], [460000.0, 161000.0], [460000.0, 162000.0], [461000.0, 162000.0], [461000.0, 161000.0]]]}}, {"id": "394", "type": "Feature", "properties": {"easting": 483500.0, "northing": 161500.0, "gridsq": "X483Y161", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[484000.0, 161000.0], [483000.0, 161000.0], [483000.0, 162000.0], [484000.0, 162000.0], [484000.0, 161000.0]]]}}, {"id": "395", "type": "Feature", "properties": {"easting": 484500.0, "northing": 161500.0, "gridsq": "X484Y161", "numresp": 157, "numpeople": 367.38, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 161000.0], [484000.0, 161000.0], [484000.0, 162000.0], [485000.0, 162000.0], [485000.0, 161000.0]]]}}, {"id": "396", "type": "Feature", "properties": {"easting": 520500.0, "northing": 161500.0, "gridsq": "X520Y161", "numresp": 176, "numpeople": 411.84, "numkeys": 4, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 161000.0], [520000.0, 161000.0], [520000.0, 162000.0], [521000.0, 162000.0], [521000.0, 161000.0]]]}}, {"id": "397", "type": "Feature", "properties": {"easting": 521500.0, "northing": 161500.0, "gridsq": "X521Y161", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 161000.0], [521000.0, 161000.0], [521000.0, 162000.0], [522000.0, 162000.0], [522000.0, 161000.0]]]}}, {"id": "398", "type": "Feature", "properties": {"easting": 531500.0, "northing": 161500.0, "gridsq": "X531Y161", "numresp": 508, "numpeople": 1188.72, "numkeys": 4, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 161000.0], [531000.0, 161000.0], [531000.0, 162000.0], [532000.0, 162000.0], [532000.0, 161000.0]]]}}, {"id": "399", "type": "Feature", "properties": {"easting": 570500.0, "northing": 161500.0, "gridsq": "X570Y161", "numresp": 173, "numpeople": 404.82, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[571000.0, 161000.0], [570000.0, 161000.0], [570000.0, 162000.0], [571000.0, 162000.0], [571000.0, 161000.0]]]}}, {"id": "400", "type": "Feature", "properties": {"easting": 602500.0, "northing": 161500.0, "gridsq": "X602Y161", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[603000.0, 161000.0], [602000.0, 161000.0], [602000.0, 162000.0], [603000.0, 162000.0], [603000.0, 161000.0]]]}}, {"id": "401", "type": "Feature", "properties": {"easting": 334500.0, "northing": 162500.0, "gridsq": "X334Y162", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 162000.0], [334000.0, 162000.0], [334000.0, 163000.0], [335000.0, 163000.0], [335000.0, 162000.0]]]}}, {"id": "402", "type": "Feature", "properties": {"easting": 335500.0, "northing": 162500.0, "gridsq": "X335Y162", "numresp": 85, "numpeople": 198.9, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 162000.0], [335000.0, 162000.0], [335000.0, 163000.0], [336000.0, 163000.0], [336000.0, 162000.0]]]}}, {"id": "403", "type": "Feature", "properties": {"easting": 373500.0, "northing": 162500.0, "gridsq": "X373Y162", "numresp": 15, "numpeople": 35.1, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[374000.0, 162000.0], [373000.0, 162000.0], [373000.0, 163000.0], [374000.0, 163000.0], [374000.0, 162000.0]]]}}, {"id": "404", "type": "Feature", "properties": {"easting": 531500.0, "northing": 162500.0, "gridsq": "X531Y162", "numresp": 114, "numpeople": 266.76, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 162000.0], [531000.0, 162000.0], [531000.0, 163000.0], [532000.0, 163000.0], [532000.0, 162000.0]]]}}, {"id": "405", "type": "Feature", "properties": {"easting": 532500.0, "northing": 162500.0, "gridsq": "X532Y162", "numresp": 196, "numpeople": 458.64, "numkeys": 1, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 162000.0], [532000.0, 162000.0], [532000.0, 163000.0], [533000.0, 163000.0], [533000.0, 162000.0]]]}}, {"id": "406", "type": "Feature", "properties": {"easting": 536500.0, "northing": 162500.0, "gridsq": "X536Y162", "numresp": 125, "numpeople": 292.5, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 162000.0], [536000.0, 162000.0], [536000.0, 163000.0], [537000.0, 163000.0], [537000.0, 162000.0]]]}}, {"id": "407", "type": "Feature", "properties": {"easting": 491500.0, "northing": 163500.0, "gridsq": "X491Y163", "numresp": 107, "numpeople": 250.38, "numkeys": 0, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[492000.0, 163000.0], [491000.0, 163000.0], [491000.0, 164000.0], [492000.0, 164000.0], [492000.0, 163000.0]]]}}, {"id": "408", "type": "Feature", "properties": {"easting": 502500.0, "northing": 163500.0, "gridsq": "X502Y163", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 163000.0], [502000.0, 163000.0], [502000.0, 164000.0], [503000.0, 164000.0], [503000.0, 163000.0]]]}}, {"id": "409", "type": "Feature", "properties": {"easting": 515500.0, "northing": 163500.0, "gridsq": "X515Y163", "numresp": 65, "numpeople": 152.1, "numkeys": 6, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 163000.0], [515000.0, 163000.0], [515000.0, 164000.0], [516000.0, 164000.0], [516000.0, 163000.0]]]}}, {"id": "410", "type": "Feature", "properties": {"easting": 517500.0, "northing": 163500.0, "gridsq": "X517Y163", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 163000.0], [517000.0, 163000.0], [517000.0, 164000.0], [518000.0, 164000.0], [518000.0, 163000.0]]]}}, {"id": "411", "type": "Feature", "properties": {"easting": 525500.0, "northing": 163500.0, "gridsq": "X525Y163", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 163000.0], [525000.0, 163000.0], [525000.0, 164000.0], [526000.0, 164000.0], [526000.0, 163000.0]]]}}, {"id": "412", "type": "Feature", "properties": {"easting": 526500.0, "northing": 163500.0, "gridsq": "X526Y163", "numresp": 273, "numpeople": 638.82, "numkeys": 7, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 163000.0], [526000.0, 163000.0], [526000.0, 164000.0], [527000.0, 164000.0], [527000.0, 163000.0]]]}}, {"id": "413", "type": "Feature", "properties": {"easting": 527500.0, "northing": 163500.0, "gridsq": "X527Y163", "numresp": 89, "numpeople": 208.26, "numkeys": 4, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 163000.0], [527000.0, 163000.0], [527000.0, 164000.0], [528000.0, 164000.0], [528000.0, 163000.0]]]}}, {"id": "414", "type": "Feature", "properties": {"easting": 530500.0, "northing": 163500.0, "gridsq": "X530Y163", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 163000.0], [530000.0, 163000.0], [530000.0, 164000.0], [531000.0, 164000.0], [531000.0, 163000.0]]]}}, {"id": "415", "type": "Feature", "properties": {"easting": 532500.0, "northing": 163500.0, "gridsq": "X532Y163", "numresp": 265, "numpeople": 620.1, "numkeys": 3, "numnonresp": 80, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 163000.0], [532000.0, 163000.0], [532000.0, 164000.0], [533000.0, 164000.0], [533000.0, 163000.0]]]}}, {"id": "416", "type": "Feature", "properties": {"easting": 557500.0, "northing": 163500.0, "gridsq": "X557Y163", "numresp": 98, "numpeople": 229.32, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[558000.0, 163000.0], [557000.0, 163000.0], [557000.0, 164000.0], [558000.0, 164000.0], [558000.0, 163000.0]]]}}, {"id": "417", "type": "Feature", "properties": {"easting": 576500.0, "northing": 163500.0, "gridsq": "X576Y163", "numresp": 145, "numpeople": 339.3, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 163000.0], [576000.0, 163000.0], [576000.0, 164000.0], [577000.0, 164000.0], [577000.0, 163000.0]]]}}, {"id": "418", "type": "Feature", "properties": {"easting": 579500.0, "northing": 163500.0, "gridsq": "X579Y163", "numresp": 36, "numpeople": 84.24, "numkeys": 4, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[580000.0, 163000.0], [579000.0, 163000.0], [579000.0, 164000.0], [580000.0, 164000.0], [580000.0, 163000.0]]]}}, {"id": "419", "type": "Feature", "properties": {"easting": 589500.0, "northing": 163500.0, "gridsq": "X589Y163", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[590000.0, 163000.0], [589000.0, 163000.0], [589000.0, 164000.0], [590000.0, 164000.0], [590000.0, 163000.0]]]}}, {"id": "420", "type": "Feature", "properties": {"easting": 590500.0, "northing": 163500.0, "gridsq": "X590Y163", "numresp": 118, "numpeople": 276.12, "numkeys": 1, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[591000.0, 163000.0], [590000.0, 163000.0], [590000.0, 164000.0], [591000.0, 164000.0], [591000.0, 163000.0]]]}}, {"id": "421", "type": "Feature", "properties": {"easting": 591500.0, "northing": 163500.0, "gridsq": "X591Y163", "numresp": 134, "numpeople": 313.56, "numkeys": 1, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[592000.0, 163000.0], [591000.0, 163000.0], [591000.0, 164000.0], [592000.0, 164000.0], [592000.0, 163000.0]]]}}, {"id": "422", "type": "Feature", "properties": {"easting": 592500.0, "northing": 163500.0, "gridsq": "X592Y163", "numresp": 107, "numpeople": 250.38, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[593000.0, 163000.0], [592000.0, 163000.0], [592000.0, 164000.0], [593000.0, 164000.0], [593000.0, 163000.0]]]}}, {"id": "423", "type": "Feature", "properties": {"easting": 373500.0, "northing": 164500.0, "gridsq": "X373Y164", "numresp": 224, "numpeople": 524.16, "numkeys": 5, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[374000.0, 164000.0], [373000.0, 164000.0], [373000.0, 165000.0], [374000.0, 165000.0], [374000.0, 164000.0]]]}}, {"id": "424", "type": "Feature", "properties": {"easting": 374500.0, "northing": 164500.0, "gridsq": "X374Y164", "numresp": 220, "numpeople": 514.8, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[375000.0, 164000.0], [374000.0, 164000.0], [374000.0, 165000.0], [375000.0, 165000.0], [375000.0, 164000.0]]]}}, {"id": "425", "type": "Feature", "properties": {"easting": 375500.0, "northing": 164500.0, "gridsq": "X375Y164", "numresp": 147, "numpeople": 343.98, "numkeys": 5, "numnonresp": 82, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[376000.0, 164000.0], [375000.0, 164000.0], [375000.0, 165000.0], [376000.0, 165000.0], [376000.0, 164000.0]]]}}, {"id": "426", "type": "Feature", "properties": {"easting": 505500.0, "northing": 164500.0, "gridsq": "X505Y164", "numresp": 104, "numpeople": 243.36, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 164000.0], [505000.0, 164000.0], [505000.0, 165000.0], [506000.0, 165000.0], [506000.0, 164000.0]]]}}, {"id": "427", "type": "Feature", "properties": {"easting": 507500.0, "northing": 164500.0, "gridsq": "X507Y164", "numresp": 22, "numpeople": 51.48, "numkeys": 1, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 164000.0], [507000.0, 164000.0], [507000.0, 165000.0], [508000.0, 165000.0], [508000.0, 164000.0]]]}}, {"id": "428", "type": "Feature", "properties": {"easting": 515500.0, "northing": 164500.0, "gridsq": "X515Y164", "numresp": 94, "numpeople": 219.96, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 164000.0], [515000.0, 164000.0], [515000.0, 165000.0], [516000.0, 165000.0], [516000.0, 164000.0]]]}}, {"id": "429", "type": "Feature", "properties": {"easting": 517500.0, "northing": 164500.0, "gridsq": "X517Y164", "numresp": 140, "numpeople": 327.6, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 164000.0], [517000.0, 164000.0], [517000.0, 165000.0], [518000.0, 165000.0], [518000.0, 164000.0]]]}}, {"id": "430", "type": "Feature", "properties": {"easting": 518500.0, "northing": 164500.0, "gridsq": "X518Y164", "numresp": 159, "numpeople": 372.06, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 164000.0], [518000.0, 164000.0], [518000.0, 165000.0], [519000.0, 165000.0], [519000.0, 164000.0]]]}}, {"id": "431", "type": "Feature", "properties": {"easting": 524500.0, "northing": 164500.0, "gridsq": "X524Y164", "numresp": 137, "numpeople": 320.58, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 164000.0], [524000.0, 164000.0], [524000.0, 165000.0], [525000.0, 165000.0], [525000.0, 164000.0]]]}}, {"id": "432", "type": "Feature", "properties": {"easting": 525500.0, "northing": 164500.0, "gridsq": "X525Y164", "numresp": 124, "numpeople": 290.16, "numkeys": 2, "numnonresp": 66, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 164000.0], [525000.0, 164000.0], [525000.0, 165000.0], [526000.0, 165000.0], [526000.0, 164000.0]]]}}, {"id": "433", "type": "Feature", "properties": {"easting": 526500.0, "northing": 164500.0, "gridsq": "X526Y164", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 164000.0], [526000.0, 164000.0], [526000.0, 165000.0], [527000.0, 165000.0], [527000.0, 164000.0]]]}}, {"id": "434", "type": "Feature", "properties": {"easting": 529500.0, "northing": 164500.0, "gridsq": "X529Y164", "numresp": 128, "numpeople": 299.52, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 164000.0], [529000.0, 164000.0], [529000.0, 165000.0], [530000.0, 165000.0], [530000.0, 164000.0]]]}}, {"id": "435", "type": "Feature", "properties": {"easting": 530500.0, "northing": 164500.0, "gridsq": "X530Y164", "numresp": 116, "numpeople": 271.44, "numkeys": 3, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 164000.0], [530000.0, 164000.0], [530000.0, 165000.0], [531000.0, 165000.0], [531000.0, 164000.0]]]}}, {"id": "436", "type": "Feature", "properties": {"easting": 531500.0, "northing": 164500.0, "gridsq": "X531Y164", "numresp": 155, "numpeople": 362.7, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 164000.0], [531000.0, 164000.0], [531000.0, 165000.0], [532000.0, 165000.0], [532000.0, 164000.0]]]}}, {"id": "437", "type": "Feature", "properties": {"easting": 532500.0, "northing": 164500.0, "gridsq": "X532Y164", "numresp": 634, "numpeople": 1483.56, "numkeys": 4, "numnonresp": 114, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 164000.0], [532000.0, 164000.0], [532000.0, 165000.0], [533000.0, 165000.0], [533000.0, 164000.0]]]}}, {"id": "438", "type": "Feature", "properties": {"easting": 533500.0, "northing": 164500.0, "gridsq": "X533Y164", "numresp": 112, "numpeople": 262.08, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 164000.0], [533000.0, 164000.0], [533000.0, 165000.0], [534000.0, 165000.0], [534000.0, 164000.0]]]}}, {"id": "439", "type": "Feature", "properties": {"easting": 538500.0, "northing": 164500.0, "gridsq": "X538Y164", "numresp": 27, "numpeople": 63.18, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 164000.0], [538000.0, 164000.0], [538000.0, 165000.0], [539000.0, 165000.0], [539000.0, 164000.0]]]}}, {"id": "440", "type": "Feature", "properties": {"easting": 545500.0, "northing": 164500.0, "gridsq": "X545Y164", "numresp": 160, "numpeople": 374.4, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 164000.0], [545000.0, 164000.0], [545000.0, 165000.0], [546000.0, 165000.0], [546000.0, 164000.0]]]}}, {"id": "441", "type": "Feature", "properties": {"easting": 546500.0, "northing": 164500.0, "gridsq": "X546Y164", "numresp": 114, "numpeople": 266.76, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 164000.0], [546000.0, 164000.0], [546000.0, 165000.0], [547000.0, 165000.0], [547000.0, 164000.0]]]}}, {"id": "442", "type": "Feature", "properties": {"easting": 575500.0, "northing": 164500.0, "gridsq": "X575Y164", "numresp": 133, "numpeople": 311.22, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 164000.0], [575000.0, 164000.0], [575000.0, 165000.0], [576000.0, 165000.0], [576000.0, 164000.0]]]}}, {"id": "443", "type": "Feature", "properties": {"easting": 576500.0, "northing": 164500.0, "gridsq": "X576Y164", "numresp": 119, "numpeople": 278.46, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 164000.0], [576000.0, 164000.0], [576000.0, 165000.0], [577000.0, 165000.0], [577000.0, 164000.0]]]}}, {"id": "444", "type": "Feature", "properties": {"easting": 580500.0, "northing": 164500.0, "gridsq": "X580Y164", "numresp": 100, "numpeople": 234.0, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[581000.0, 164000.0], [580000.0, 164000.0], [580000.0, 165000.0], [581000.0, 165000.0], [581000.0, 164000.0]]]}}, {"id": "445", "type": "Feature", "properties": {"easting": 589500.0, "northing": 164500.0, "gridsq": "X589Y164", "numresp": 98, "numpeople": 229.32, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[590000.0, 164000.0], [589000.0, 164000.0], [589000.0, 165000.0], [590000.0, 165000.0], [590000.0, 164000.0]]]}}, {"id": "446", "type": "Feature", "properties": {"easting": 591500.0, "northing": 164500.0, "gridsq": "X591Y164", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[592000.0, 164000.0], [591000.0, 164000.0], [591000.0, 165000.0], [592000.0, 165000.0], [592000.0, 164000.0]]]}}, {"id": "447", "type": "Feature", "properties": {"easting": 637500.0, "northing": 164500.0, "gridsq": "X637Y164", "numresp": 104, "numpeople": 243.36, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[638000.0, 164000.0], [637000.0, 164000.0], [637000.0, 165000.0], [638000.0, 165000.0], [638000.0, 164000.0]]]}}, {"id": "448", "type": "Feature", "properties": {"easting": 638500.0, "northing": 164500.0, "gridsq": "X638Y164", "numresp": 52, "numpeople": 121.68, "numkeys": 1, "numnonresp": 70, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[639000.0, 164000.0], [638000.0, 164000.0], [638000.0, 165000.0], [639000.0, 165000.0], [639000.0, 164000.0]]]}}, {"id": "449", "type": "Feature", "properties": {"easting": 373500.0, "northing": 165500.0, "gridsq": "X373Y165", "numresp": 144, "numpeople": 336.96, "numkeys": 1, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[374000.0, 165000.0], [373000.0, 165000.0], [373000.0, 166000.0], [374000.0, 166000.0], [374000.0, 165000.0]]]}}, {"id": "450", "type": "Feature", "properties": {"easting": 374500.0, "northing": 165500.0, "gridsq": "X374Y165", "numresp": 125, "numpeople": 292.5, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[375000.0, 165000.0], [374000.0, 165000.0], [374000.0, 166000.0], [375000.0, 166000.0], [375000.0, 165000.0]]]}}, {"id": "451", "type": "Feature", "properties": {"easting": 479500.0, "northing": 165500.0, "gridsq": "X479Y165", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[480000.0, 165000.0], [479000.0, 165000.0], [479000.0, 166000.0], [480000.0, 166000.0], [480000.0, 165000.0]]]}}, {"id": "452", "type": "Feature", "properties": {"easting": 507500.0, "northing": 165500.0, "gridsq": "X507Y165", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 165000.0], [507000.0, 165000.0], [507000.0, 166000.0], [508000.0, 166000.0], [508000.0, 165000.0]]]}}, {"id": "453", "type": "Feature", "properties": {"easting": 516500.0, "northing": 165500.0, "gridsq": "X516Y165", "numresp": 65, "numpeople": 152.1, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 165000.0], [516000.0, 165000.0], [516000.0, 166000.0], [517000.0, 166000.0], [517000.0, 165000.0]]]}}, {"id": "454", "type": "Feature", "properties": {"easting": 518500.0, "northing": 165500.0, "gridsq": "X518Y165", "numresp": 124, "numpeople": 290.16, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 165000.0], [518000.0, 165000.0], [518000.0, 166000.0], [519000.0, 166000.0], [519000.0, 165000.0]]]}}, {"id": "455", "type": "Feature", "properties": {"easting": 522500.0, "northing": 165500.0, "gridsq": "X522Y165", "numresp": 194, "numpeople": 453.96, "numkeys": 0, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 165000.0], [522000.0, 165000.0], [522000.0, 166000.0], [523000.0, 166000.0], [523000.0, 165000.0]]]}}, {"id": "456", "type": "Feature", "properties": {"easting": 524500.0, "northing": 165500.0, "gridsq": "X524Y165", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 165000.0], [524000.0, 165000.0], [524000.0, 166000.0], [525000.0, 166000.0], [525000.0, 165000.0]]]}}, {"id": "457", "type": "Feature", "properties": {"easting": 525500.0, "northing": 165500.0, "gridsq": "X525Y165", "numresp": 154, "numpeople": 360.36, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 165000.0], [525000.0, 165000.0], [525000.0, 166000.0], [526000.0, 166000.0], [526000.0, 165000.0]]]}}, {"id": "458", "type": "Feature", "properties": {"easting": 527500.0, "northing": 165500.0, "gridsq": "X527Y165", "numresp": 76, "numpeople": 177.84, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 165000.0], [527000.0, 165000.0], [527000.0, 166000.0], [528000.0, 166000.0], [528000.0, 165000.0]]]}}, {"id": "459", "type": "Feature", "properties": {"easting": 531500.0, "northing": 165500.0, "gridsq": "X531Y165", "numresp": 131, "numpeople": 306.54, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 165000.0], [531000.0, 165000.0], [531000.0, 166000.0], [532000.0, 166000.0], [532000.0, 165000.0]]]}}, {"id": "460", "type": "Feature", "properties": {"easting": 532500.0, "northing": 165500.0, "gridsq": "X532Y165", "numresp": 245, "numpeople": 573.3, "numkeys": 2, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 165000.0], [532000.0, 165000.0], [532000.0, 166000.0], [533000.0, 166000.0], [533000.0, 165000.0]]]}}, {"id": "461", "type": "Feature", "properties": {"easting": 543500.0, "northing": 165500.0, "gridsq": "X543Y165", "numresp": 43, "numpeople": 100.62, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 165000.0], [543000.0, 165000.0], [543000.0, 166000.0], [544000.0, 166000.0], [544000.0, 165000.0]]]}}, {"id": "462", "type": "Feature", "properties": {"easting": 545500.0, "northing": 165500.0, "gridsq": "X545Y165", "numresp": 161, "numpeople": 376.74, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 165000.0], [545000.0, 165000.0], [545000.0, 166000.0], [546000.0, 166000.0], [546000.0, 165000.0]]]}}, {"id": "463", "type": "Feature", "properties": {"easting": 546500.0, "northing": 165500.0, "gridsq": "X546Y165", "numresp": 95, "numpeople": 222.3, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 165000.0], [546000.0, 165000.0], [546000.0, 166000.0], [547000.0, 166000.0], [547000.0, 165000.0]]]}}, {"id": "464", "type": "Feature", "properties": {"easting": 560500.0, "northing": 165500.0, "gridsq": "X560Y165", "numresp": 19, "numpeople": 44.46, "numkeys": 1, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[561000.0, 165000.0], [560000.0, 165000.0], [560000.0, 166000.0], [561000.0, 166000.0], [561000.0, 165000.0]]]}}, {"id": "465", "type": "Feature", "properties": {"easting": 576500.0, "northing": 165500.0, "gridsq": "X576Y165", "numresp": 86, "numpeople": 201.24, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 165000.0], [576000.0, 165000.0], [576000.0, 166000.0], [577000.0, 166000.0], [577000.0, 165000.0]]]}}, {"id": "466", "type": "Feature", "properties": {"easting": 581500.0, "northing": 165500.0, "gridsq": "X581Y165", "numresp": 180, "numpeople": 421.2, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 165000.0], [581000.0, 165000.0], [581000.0, 166000.0], [582000.0, 166000.0], [582000.0, 165000.0]]]}}, {"id": "467", "type": "Feature", "properties": {"easting": 582500.0, "northing": 165500.0, "gridsq": "X582Y165", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[583000.0, 165000.0], [582000.0, 165000.0], [582000.0, 166000.0], [583000.0, 166000.0], [583000.0, 165000.0]]]}}, {"id": "468", "type": "Feature", "properties": {"easting": 583500.0, "northing": 165500.0, "gridsq": "X583Y165", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[584000.0, 165000.0], [583000.0, 165000.0], [583000.0, 166000.0], [584000.0, 166000.0], [584000.0, 165000.0]]]}}, {"id": "469", "type": "Feature", "properties": {"easting": 610500.0, "northing": 165500.0, "gridsq": "X610Y165", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[611000.0, 165000.0], [610000.0, 165000.0], [610000.0, 166000.0], [611000.0, 166000.0], [611000.0, 165000.0]]]}}, {"id": "470", "type": "Feature", "properties": {"easting": 636500.0, "northing": 165500.0, "gridsq": "X636Y165", "numresp": 14, "numpeople": 32.76, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[637000.0, 165000.0], [636000.0, 165000.0], [636000.0, 166000.0], [637000.0, 166000.0], [637000.0, 165000.0]]]}}, {"id": "471", "type": "Feature", "properties": {"easting": 637500.0, "northing": 165500.0, "gridsq": "X637Y165", "numresp": 122, "numpeople": 285.48, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[638000.0, 165000.0], [637000.0, 165000.0], [637000.0, 166000.0], [638000.0, 166000.0], [638000.0, 165000.0]]]}}, {"id": "472", "type": "Feature", "properties": {"easting": 638500.0, "northing": 165500.0, "gridsq": "X638Y165", "numresp": 192, "numpeople": 449.28, "numkeys": 1, "numnonresp": 67, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[639000.0, 165000.0], [638000.0, 165000.0], [638000.0, 166000.0], [639000.0, 166000.0], [639000.0, 165000.0]]]}}, {"id": "473", "type": "Feature", "properties": {"easting": 372500.0, "northing": 166500.0, "gridsq": "X372Y166", "numresp": 100, "numpeople": 234.0, "numkeys": 2, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[373000.0, 166000.0], [372000.0, 166000.0], [372000.0, 167000.0], [373000.0, 167000.0], [373000.0, 166000.0]]]}}, {"id": "474", "type": "Feature", "properties": {"easting": 375500.0, "northing": 166500.0, "gridsq": "X375Y166", "numresp": 15, "numpeople": 35.1, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[376000.0, 166000.0], [375000.0, 166000.0], [375000.0, 167000.0], [376000.0, 167000.0], [376000.0, 166000.0]]]}}, {"id": "475", "type": "Feature", "properties": {"easting": 376500.0, "northing": 166500.0, "gridsq": "X376Y166", "numresp": 86, "numpeople": 201.24, "numkeys": 1, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[377000.0, 166000.0], [376000.0, 166000.0], [376000.0, 167000.0], [377000.0, 167000.0], [377000.0, 166000.0]]]}}, {"id": "476", "type": "Feature", "properties": {"easting": 446500.0, "northing": 166500.0, "gridsq": "X446Y166", "numresp": 137, "numpeople": 320.58, "numkeys": 0, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[447000.0, 166000.0], [446000.0, 166000.0], [446000.0, 167000.0], [447000.0, 167000.0], [447000.0, 166000.0]]]}}, {"id": "477", "type": "Feature", "properties": {"easting": 447500.0, "northing": 166500.0, "gridsq": "X447Y166", "numresp": 28, "numpeople": 65.52, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 166000.0], [447000.0, 166000.0], [447000.0, 167000.0], [448000.0, 167000.0], [448000.0, 166000.0]]]}}, {"id": "478", "type": "Feature", "properties": {"easting": 451500.0, "northing": 166500.0, "gridsq": "X451Y166", "numresp": 162, "numpeople": 379.08, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 166000.0], [451000.0, 166000.0], [451000.0, 167000.0], [452000.0, 167000.0], [452000.0, 166000.0]]]}}, {"id": "479", "type": "Feature", "properties": {"easting": 452500.0, "northing": 166500.0, "gridsq": "X452Y166", "numresp": 444, "numpeople": 1038.96, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[453000.0, 166000.0], [452000.0, 166000.0], [452000.0, 167000.0], [453000.0, 167000.0], [453000.0, 166000.0]]]}}, {"id": "480", "type": "Feature", "properties": {"easting": 510500.0, "northing": 166500.0, "gridsq": "X510Y166", "numresp": 135, "numpeople": 315.9, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 166000.0], [510000.0, 166000.0], [510000.0, 167000.0], [511000.0, 167000.0], [511000.0, 166000.0]]]}}, {"id": "481", "type": "Feature", "properties": {"easting": 511500.0, "northing": 166500.0, "gridsq": "X511Y166", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 166000.0], [511000.0, 166000.0], [511000.0, 167000.0], [512000.0, 167000.0], [512000.0, 166000.0]]]}}, {"id": "482", "type": "Feature", "properties": {"easting": 516500.0, "northing": 166500.0, "gridsq": "X516Y166", "numresp": 187, "numpeople": 437.58, "numkeys": 2, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 166000.0], [516000.0, 166000.0], [516000.0, 167000.0], [517000.0, 167000.0], [517000.0, 166000.0]]]}}, {"id": "483", "type": "Feature", "properties": {"easting": 517500.0, "northing": 166500.0, "gridsq": "X517Y166", "numresp": 193, "numpeople": 451.62, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 166000.0], [517000.0, 166000.0], [517000.0, 167000.0], [518000.0, 167000.0], [518000.0, 166000.0]]]}}, {"id": "484", "type": "Feature", "properties": {"easting": 521500.0, "northing": 166500.0, "gridsq": "X521Y166", "numresp": 124, "numpeople": 290.16, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 166000.0], [521000.0, 166000.0], [521000.0, 167000.0], [522000.0, 167000.0], [522000.0, 166000.0]]]}}, {"id": "485", "type": "Feature", "properties": {"easting": 522500.0, "northing": 166500.0, "gridsq": "X522Y166", "numresp": 140, "numpeople": 327.6, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 166000.0], [522000.0, 166000.0], [522000.0, 167000.0], [523000.0, 167000.0], [523000.0, 166000.0]]]}}, {"id": "486", "type": "Feature", "properties": {"easting": 523500.0, "northing": 166500.0, "gridsq": "X523Y166", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 166000.0], [523000.0, 166000.0], [523000.0, 167000.0], [524000.0, 167000.0], [524000.0, 166000.0]]]}}, {"id": "487", "type": "Feature", "properties": {"easting": 525500.0, "northing": 166500.0, "gridsq": "X525Y166", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 166000.0], [525000.0, 166000.0], [525000.0, 167000.0], [526000.0, 167000.0], [526000.0, 166000.0]]]}}, {"id": "488", "type": "Feature", "properties": {"easting": 528500.0, "northing": 166500.0, "gridsq": "X528Y166", "numresp": 90, "numpeople": 210.6, "numkeys": 3, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 166000.0], [528000.0, 166000.0], [528000.0, 167000.0], [529000.0, 167000.0], [529000.0, 166000.0]]]}}, {"id": "489", "type": "Feature", "properties": {"easting": 533500.0, "northing": 166500.0, "gridsq": "X533Y166", "numresp": 210, "numpeople": 491.4, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 166000.0], [533000.0, 166000.0], [533000.0, 167000.0], [534000.0, 167000.0], [534000.0, 166000.0]]]}}, {"id": "490", "type": "Feature", "properties": {"easting": 534500.0, "northing": 166500.0, "gridsq": "X534Y166", "numresp": 138, "numpeople": 322.92, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 166000.0], [534000.0, 166000.0], [534000.0, 167000.0], [535000.0, 167000.0], [535000.0, 166000.0]]]}}, {"id": "491", "type": "Feature", "properties": {"easting": 538500.0, "northing": 166500.0, "gridsq": "X538Y166", "numresp": 70, "numpeople": 163.8, "numkeys": 3, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 166000.0], [538000.0, 166000.0], [538000.0, 167000.0], [539000.0, 167000.0], [539000.0, 166000.0]]]}}, {"id": "492", "type": "Feature", "properties": {"easting": 539500.0, "northing": 166500.0, "gridsq": "X539Y166", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 166000.0], [539000.0, 166000.0], [539000.0, 167000.0], [540000.0, 167000.0], [540000.0, 166000.0]]]}}, {"id": "493", "type": "Feature", "properties": {"easting": 545500.0, "northing": 166500.0, "gridsq": "X545Y166", "numresp": 123, "numpeople": 287.82, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 166000.0], [545000.0, 166000.0], [545000.0, 167000.0], [546000.0, 167000.0], [546000.0, 166000.0]]]}}, {"id": "494", "type": "Feature", "properties": {"easting": 546500.0, "northing": 166500.0, "gridsq": "X546Y166", "numresp": 458, "numpeople": 1071.72, "numkeys": 5, "numnonresp": 243, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 166000.0], [546000.0, 166000.0], [546000.0, 167000.0], [547000.0, 167000.0], [547000.0, 166000.0]]]}}, {"id": "495", "type": "Feature", "properties": {"easting": 547500.0, "northing": 166500.0, "gridsq": "X547Y166", "numresp": 224, "numpeople": 524.16, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 166000.0], [547000.0, 166000.0], [547000.0, 167000.0], [548000.0, 167000.0], [548000.0, 166000.0]]]}}, {"id": "496", "type": "Feature", "properties": {"easting": 574500.0, "northing": 166500.0, "gridsq": "X574Y166", "numresp": 184, "numpeople": 430.56, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 166000.0], [574000.0, 166000.0], [574000.0, 167000.0], [575000.0, 167000.0], [575000.0, 166000.0]]]}}, {"id": "497", "type": "Feature", "properties": {"easting": 575500.0, "northing": 166500.0, "gridsq": "X575Y166", "numresp": 180, "numpeople": 421.2, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 166000.0], [575000.0, 166000.0], [575000.0, 167000.0], [576000.0, 167000.0], [576000.0, 166000.0]]]}}, {"id": "498", "type": "Feature", "properties": {"easting": 576500.0, "northing": 166500.0, "gridsq": "X576Y166", "numresp": 203, "numpeople": 475.02, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 166000.0], [576000.0, 166000.0], [576000.0, 167000.0], [577000.0, 167000.0], [577000.0, 166000.0]]]}}, {"id": "499", "type": "Feature", "properties": {"easting": 577500.0, "northing": 166500.0, "gridsq": "X577Y166", "numresp": 266, "numpeople": 622.44, "numkeys": 1, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 166000.0], [577000.0, 166000.0], [577000.0, 167000.0], [578000.0, 167000.0], [578000.0, 166000.0]]]}}, {"id": "500", "type": "Feature", "properties": {"easting": 580500.0, "northing": 166500.0, "gridsq": "X580Y166", "numresp": 128, "numpeople": 299.52, "numkeys": 1, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[581000.0, 166000.0], [580000.0, 166000.0], [580000.0, 167000.0], [581000.0, 167000.0], [581000.0, 166000.0]]]}}, {"id": "501", "type": "Feature", "properties": {"easting": 581500.0, "northing": 166500.0, "gridsq": "X581Y166", "numresp": 110, "numpeople": 257.4, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 166000.0], [581000.0, 166000.0], [581000.0, 167000.0], [582000.0, 167000.0], [582000.0, 166000.0]]]}}, {"id": "502", "type": "Feature", "properties": {"easting": 582500.0, "northing": 166500.0, "gridsq": "X582Y166", "numresp": 155, "numpeople": 362.7, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[583000.0, 166000.0], [582000.0, 166000.0], [582000.0, 167000.0], [583000.0, 167000.0], [583000.0, 166000.0]]]}}, {"id": "503", "type": "Feature", "properties": {"easting": 610500.0, "northing": 166500.0, "gridsq": "X610Y166", "numresp": 283, "numpeople": 662.22, "numkeys": 0, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[611000.0, 166000.0], [610000.0, 166000.0], [610000.0, 167000.0], [611000.0, 167000.0], [611000.0, 166000.0]]]}}, {"id": "504", "type": "Feature", "properties": {"easting": 611500.0, "northing": 166500.0, "gridsq": "X611Y166", "numresp": 288, "numpeople": 673.92, "numkeys": 4, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[612000.0, 166000.0], [611000.0, 166000.0], [611000.0, 167000.0], [612000.0, 167000.0], [612000.0, 166000.0]]]}}, {"id": "505", "type": "Feature", "properties": {"easting": 637500.0, "northing": 166500.0, "gridsq": "X637Y166", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[638000.0, 166000.0], [637000.0, 166000.0], [637000.0, 167000.0], [638000.0, 167000.0], [638000.0, 166000.0]]]}}, {"id": "506", "type": "Feature", "properties": {"easting": 377500.0, "northing": 167500.0, "gridsq": "X377Y167", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 167000.0], [377000.0, 167000.0], [377000.0, 168000.0], [378000.0, 168000.0], [378000.0, 167000.0]]]}}, {"id": "507", "type": "Feature", "properties": {"easting": 447500.0, "northing": 167500.0, "gridsq": "X447Y167", "numresp": 126, "numpeople": 294.84, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 167000.0], [447000.0, 167000.0], [447000.0, 168000.0], [448000.0, 168000.0], [448000.0, 167000.0]]]}}, {"id": "508", "type": "Feature", "properties": {"easting": 448500.0, "northing": 167500.0, "gridsq": "X448Y167", "numresp": 151, "numpeople": 353.34, "numkeys": 3, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 167000.0], [448000.0, 167000.0], [448000.0, 168000.0], [449000.0, 168000.0], [449000.0, 167000.0]]]}}, {"id": "509", "type": "Feature", "properties": {"easting": 450500.0, "northing": 167500.0, "gridsq": "X450Y167", "numresp": 258, "numpeople": 603.72, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 167000.0], [450000.0, 167000.0], [450000.0, 168000.0], [451000.0, 168000.0], [451000.0, 167000.0]]]}}, {"id": "510", "type": "Feature", "properties": {"easting": 451500.0, "northing": 167500.0, "gridsq": "X451Y167", "numresp": 151, "numpeople": 353.34, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 167000.0], [451000.0, 167000.0], [451000.0, 168000.0], [452000.0, 168000.0], [452000.0, 167000.0]]]}}, {"id": "511", "type": "Feature", "properties": {"easting": 480500.0, "northing": 167500.0, "gridsq": "X480Y167", "numresp": 100, "numpeople": 234.0, "numkeys": 1, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 167000.0], [480000.0, 167000.0], [480000.0, 168000.0], [481000.0, 168000.0], [481000.0, 167000.0]]]}}, {"id": "512", "type": "Feature", "properties": {"easting": 484500.0, "northing": 167500.0, "gridsq": "X484Y167", "numresp": 18, "numpeople": 42.12, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 167000.0], [484000.0, 167000.0], [484000.0, 168000.0], [485000.0, 168000.0], [485000.0, 167000.0]]]}}, {"id": "513", "type": "Feature", "properties": {"easting": 485500.0, "northing": 167500.0, "gridsq": "X485Y167", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 167000.0], [485000.0, 167000.0], [485000.0, 168000.0], [486000.0, 168000.0], [486000.0, 167000.0]]]}}, {"id": "514", "type": "Feature", "properties": {"easting": 486500.0, "northing": 167500.0, "gridsq": "X486Y167", "numresp": 182, "numpeople": 425.88, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 167000.0], [486000.0, 167000.0], [486000.0, 168000.0], [487000.0, 168000.0], [487000.0, 167000.0]]]}}, {"id": "515", "type": "Feature", "properties": {"easting": 522500.0, "northing": 167500.0, "gridsq": "X522Y167", "numresp": 132, "numpeople": 308.88, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 167000.0], [522000.0, 167000.0], [522000.0, 168000.0], [523000.0, 168000.0], [523000.0, 167000.0]]]}}, {"id": "516", "type": "Feature", "properties": {"easting": 523500.0, "northing": 167500.0, "gridsq": "X523Y167", "numresp": 28, "numpeople": 65.52, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 167000.0], [523000.0, 167000.0], [523000.0, 168000.0], [524000.0, 168000.0], [524000.0, 167000.0]]]}}, {"id": "517", "type": "Feature", "properties": {"easting": 524500.0, "northing": 167500.0, "gridsq": "X524Y167", "numresp": 38, "numpeople": 88.92, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 167000.0], [524000.0, 167000.0], [524000.0, 168000.0], [525000.0, 168000.0], [525000.0, 167000.0]]]}}, {"id": "518", "type": "Feature", "properties": {"easting": 526500.0, "northing": 167500.0, "gridsq": "X526Y167", "numresp": 116, "numpeople": 271.44, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 167000.0], [526000.0, 167000.0], [526000.0, 168000.0], [527000.0, 168000.0], [527000.0, 167000.0]]]}}, {"id": "519", "type": "Feature", "properties": {"easting": 527500.0, "northing": 167500.0, "gridsq": "X527Y167", "numresp": 19, "numpeople": 44.46, "numkeys": 0, "numnonresp": 87, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 167000.0], [527000.0, 167000.0], [527000.0, 168000.0], [528000.0, 168000.0], [528000.0, 167000.0]]]}}, {"id": "520", "type": "Feature", "properties": {"easting": 530500.0, "northing": 167500.0, "gridsq": "X530Y167", "numresp": 95, "numpeople": 222.3, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 167000.0], [530000.0, 167000.0], [530000.0, 168000.0], [531000.0, 168000.0], [531000.0, 167000.0]]]}}, {"id": "521", "type": "Feature", "properties": {"easting": 532500.0, "northing": 167500.0, "gridsq": "X532Y167", "numresp": 141, "numpeople": 329.94, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 167000.0], [532000.0, 167000.0], [532000.0, 168000.0], [533000.0, 168000.0], [533000.0, 167000.0]]]}}, {"id": "522", "type": "Feature", "properties": {"easting": 533500.0, "northing": 167500.0, "gridsq": "X533Y167", "numresp": 195, "numpeople": 456.3, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 167000.0], [533000.0, 167000.0], [533000.0, 168000.0], [534000.0, 168000.0], [534000.0, 167000.0]]]}}, {"id": "523", "type": "Feature", "properties": {"easting": 535500.0, "northing": 167500.0, "gridsq": "X535Y167", "numresp": 269, "numpeople": 629.46, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 167000.0], [535000.0, 167000.0], [535000.0, 168000.0], [536000.0, 168000.0], [536000.0, 167000.0]]]}}, {"id": "524", "type": "Feature", "properties": {"easting": 542500.0, "northing": 167500.0, "gridsq": "X542Y167", "numresp": 196, "numpeople": 458.64, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 167000.0], [542000.0, 167000.0], [542000.0, 168000.0], [543000.0, 168000.0], [543000.0, 167000.0]]]}}, {"id": "525", "type": "Feature", "properties": {"easting": 543500.0, "northing": 167500.0, "gridsq": "X543Y167", "numresp": 33, "numpeople": 77.22, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 167000.0], [543000.0, 167000.0], [543000.0, 168000.0], [544000.0, 168000.0], [544000.0, 167000.0]]]}}, {"id": "526", "type": "Feature", "properties": {"easting": 544500.0, "northing": 167500.0, "gridsq": "X544Y167", "numresp": 170, "numpeople": 397.8, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 167000.0], [544000.0, 167000.0], [544000.0, 168000.0], [545000.0, 168000.0], [545000.0, 167000.0]]]}}, {"id": "527", "type": "Feature", "properties": {"easting": 546500.0, "northing": 167500.0, "gridsq": "X546Y167", "numresp": 143, "numpeople": 334.62, "numkeys": 2, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 167000.0], [546000.0, 167000.0], [546000.0, 168000.0], [547000.0, 168000.0], [547000.0, 167000.0]]]}}, {"id": "528", "type": "Feature", "properties": {"easting": 547500.0, "northing": 167500.0, "gridsq": "X547Y167", "numresp": 113, "numpeople": 264.42, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 167000.0], [547000.0, 167000.0], [547000.0, 168000.0], [548000.0, 168000.0], [548000.0, 167000.0]]]}}, {"id": "529", "type": "Feature", "properties": {"easting": 564500.0, "northing": 167500.0, "gridsq": "X564Y167", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 167000.0], [564000.0, 167000.0], [564000.0, 168000.0], [565000.0, 168000.0], [565000.0, 167000.0]]]}}, {"id": "530", "type": "Feature", "properties": {"easting": 574500.0, "northing": 167500.0, "gridsq": "X574Y167", "numresp": 491, "numpeople": 1148.94, "numkeys": 0, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 167000.0], [574000.0, 167000.0], [574000.0, 168000.0], [575000.0, 168000.0], [575000.0, 167000.0]]]}}, {"id": "531", "type": "Feature", "properties": {"easting": 575500.0, "northing": 167500.0, "gridsq": "X575Y167", "numresp": 296, "numpeople": 692.64, "numkeys": 2, "numnonresp": 175, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 167000.0], [575000.0, 167000.0], [575000.0, 168000.0], [576000.0, 168000.0], [576000.0, 167000.0]]]}}, {"id": "532", "type": "Feature", "properties": {"easting": 576500.0, "northing": 167500.0, "gridsq": "X576Y167", "numresp": 372, "numpeople": 870.48, "numkeys": 2, "numnonresp": 81, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 167000.0], [576000.0, 167000.0], [576000.0, 168000.0], [577000.0, 168000.0], [577000.0, 167000.0]]]}}, {"id": "533", "type": "Feature", "properties": {"easting": 578500.0, "northing": 167500.0, "gridsq": "X578Y167", "numresp": 92, "numpeople": 215.28, "numkeys": 4, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[579000.0, 167000.0], [578000.0, 167000.0], [578000.0, 168000.0], [579000.0, 168000.0], [579000.0, 167000.0]]]}}, {"id": "534", "type": "Feature", "properties": {"easting": 618500.0, "northing": 167500.0, "gridsq": "X618Y167", "numresp": 77, "numpeople": 180.18, "numkeys": 4, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[619000.0, 167000.0], [618000.0, 167000.0], [618000.0, 168000.0], [619000.0, 168000.0], [619000.0, 167000.0]]]}}, {"id": "535", "type": "Feature", "properties": {"easting": 619500.0, "northing": 167500.0, "gridsq": "X619Y167", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[620000.0, 167000.0], [619000.0, 167000.0], [619000.0, 168000.0], [620000.0, 168000.0], [620000.0, 167000.0]]]}}, {"id": "536", "type": "Feature", "properties": {"easting": 639500.0, "northing": 167500.0, "gridsq": "X639Y167", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[640000.0, 167000.0], [639000.0, 167000.0], [639000.0, 168000.0], [640000.0, 168000.0], [640000.0, 167000.0]]]}}, {"id": "537", "type": "Feature", "properties": {"easting": 357500.0, "northing": 168500.0, "gridsq": "X357Y168", "numresp": 3, "numpeople": 7.02, "numkeys": 10, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[358000.0, 168000.0], [357000.0, 168000.0], [357000.0, 169000.0], [358000.0, 169000.0], [358000.0, 168000.0]]]}}, {"id": "538", "type": "Feature", "properties": {"easting": 447500.0, "northing": 168500.0, "gridsq": "X447Y168", "numresp": 101, "numpeople": 236.34, "numkeys": 6, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 168000.0], [447000.0, 168000.0], [447000.0, 169000.0], [448000.0, 169000.0], [448000.0, 168000.0]]]}}, {"id": "539", "type": "Feature", "properties": {"easting": 448500.0, "northing": 168500.0, "gridsq": "X448Y168", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 168000.0], [448000.0, 168000.0], [448000.0, 169000.0], [449000.0, 169000.0], [449000.0, 168000.0]]]}}, {"id": "540", "type": "Feature", "properties": {"easting": 450500.0, "northing": 168500.0, "gridsq": "X450Y168", "numresp": 151, "numpeople": 353.34, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 168000.0], [450000.0, 168000.0], [450000.0, 169000.0], [451000.0, 169000.0], [451000.0, 168000.0]]]}}, {"id": "541", "type": "Feature", "properties": {"easting": 480500.0, "northing": 168500.0, "gridsq": "X480Y168", "numresp": 212, "numpeople": 496.08, "numkeys": 1, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 168000.0], [480000.0, 168000.0], [480000.0, 169000.0], [481000.0, 169000.0], [481000.0, 168000.0]]]}}, {"id": "542", "type": "Feature", "properties": {"easting": 488500.0, "northing": 168500.0, "gridsq": "X488Y168", "numresp": 132, "numpeople": 308.88, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 168000.0], [488000.0, 168000.0], [488000.0, 169000.0], [489000.0, 169000.0], [489000.0, 168000.0]]]}}, {"id": "543", "type": "Feature", "properties": {"easting": 521500.0, "northing": 168500.0, "gridsq": "X521Y168", "numresp": 16, "numpeople": 37.44, "numkeys": 1, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 168000.0], [521000.0, 168000.0], [521000.0, 169000.0], [522000.0, 169000.0], [522000.0, 168000.0]]]}}, {"id": "544", "type": "Feature", "properties": {"easting": 522500.0, "northing": 168500.0, "gridsq": "X522Y168", "numresp": 76, "numpeople": 177.84, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 168000.0], [522000.0, 168000.0], [522000.0, 169000.0], [523000.0, 169000.0], [523000.0, 168000.0]]]}}, {"id": "545", "type": "Feature", "properties": {"easting": 524500.0, "northing": 168500.0, "gridsq": "X524Y168", "numresp": 91, "numpeople": 212.94, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 168000.0], [524000.0, 168000.0], [524000.0, 169000.0], [525000.0, 169000.0], [525000.0, 168000.0]]]}}, {"id": "546", "type": "Feature", "properties": {"easting": 527500.0, "northing": 168500.0, "gridsq": "X527Y168", "numresp": 2, "numpeople": 4.68, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 168000.0], [527000.0, 168000.0], [527000.0, 169000.0], [528000.0, 169000.0], [528000.0, 168000.0]]]}}, {"id": "547", "type": "Feature", "properties": {"easting": 532500.0, "northing": 168500.0, "gridsq": "X532Y168", "numresp": 82, "numpeople": 191.88, "numkeys": 2, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 168000.0], [532000.0, 168000.0], [532000.0, 169000.0], [533000.0, 169000.0], [533000.0, 168000.0]]]}}, {"id": "548", "type": "Feature", "properties": {"easting": 534500.0, "northing": 168500.0, "gridsq": "X534Y168", "numresp": 292, "numpeople": 683.28, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 168000.0], [534000.0, 168000.0], [534000.0, 169000.0], [535000.0, 169000.0], [535000.0, 168000.0]]]}}, {"id": "549", "type": "Feature", "properties": {"easting": 535500.0, "northing": 168500.0, "gridsq": "X535Y168", "numresp": 43, "numpeople": 100.62, "numkeys": 3, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 168000.0], [535000.0, 168000.0], [535000.0, 169000.0], [536000.0, 169000.0], [536000.0, 168000.0]]]}}, {"id": "550", "type": "Feature", "properties": {"easting": 536500.0, "northing": 168500.0, "gridsq": "X536Y168", "numresp": 121, "numpeople": 283.14, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 168000.0], [536000.0, 168000.0], [536000.0, 169000.0], [537000.0, 169000.0], [537000.0, 168000.0]]]}}, {"id": "551", "type": "Feature", "properties": {"easting": 539500.0, "northing": 168500.0, "gridsq": "X539Y168", "numresp": 84, "numpeople": 196.56, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 168000.0], [539000.0, 168000.0], [539000.0, 169000.0], [540000.0, 169000.0], [540000.0, 168000.0]]]}}, {"id": "552", "type": "Feature", "properties": {"easting": 540500.0, "northing": 168500.0, "gridsq": "X540Y168", "numresp": 147, "numpeople": 343.98, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 168000.0], [540000.0, 168000.0], [540000.0, 169000.0], [541000.0, 169000.0], [541000.0, 168000.0]]]}}, {"id": "553", "type": "Feature", "properties": {"easting": 541500.0, "northing": 168500.0, "gridsq": "X541Y168", "numresp": 141, "numpeople": 329.94, "numkeys": 5, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 168000.0], [541000.0, 168000.0], [541000.0, 169000.0], [542000.0, 169000.0], [542000.0, 168000.0]]]}}, {"id": "554", "type": "Feature", "properties": {"easting": 546500.0, "northing": 168500.0, "gridsq": "X546Y168", "numresp": 172, "numpeople": 402.48, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 168000.0], [546000.0, 168000.0], [546000.0, 169000.0], [547000.0, 169000.0], [547000.0, 168000.0]]]}}, {"id": "555", "type": "Feature", "properties": {"easting": 547500.0, "northing": 168500.0, "gridsq": "X547Y168", "numresp": 190, "numpeople": 444.6, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 168000.0], [547000.0, 168000.0], [547000.0, 169000.0], [548000.0, 169000.0], [548000.0, 168000.0]]]}}, {"id": "556", "type": "Feature", "properties": {"easting": 551500.0, "northing": 168500.0, "gridsq": "X551Y168", "numresp": 104, "numpeople": 243.36, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 168000.0], [551000.0, 168000.0], [551000.0, 169000.0], [552000.0, 169000.0], [552000.0, 168000.0]]]}}, {"id": "557", "type": "Feature", "properties": {"easting": 572500.0, "northing": 168500.0, "gridsq": "X572Y168", "numresp": 140, "numpeople": 327.6, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[573000.0, 168000.0], [572000.0, 168000.0], [572000.0, 169000.0], [573000.0, 169000.0], [573000.0, 168000.0]]]}}, {"id": "558", "type": "Feature", "properties": {"easting": 573500.0, "northing": 168500.0, "gridsq": "X573Y168", "numresp": 23, "numpeople": 53.82, "numkeys": 0, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[574000.0, 168000.0], [573000.0, 168000.0], [573000.0, 169000.0], [574000.0, 169000.0], [574000.0, 168000.0]]]}}, {"id": "559", "type": "Feature", "properties": {"easting": 574500.0, "northing": 168500.0, "gridsq": "X574Y168", "numresp": 252, "numpeople": 589.68, "numkeys": 5, "numnonresp": 92, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 168000.0], [574000.0, 168000.0], [574000.0, 169000.0], [575000.0, 169000.0], [575000.0, 168000.0]]]}}, {"id": "560", "type": "Feature", "properties": {"easting": 575500.0, "northing": 168500.0, "gridsq": "X575Y168", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 168000.0], [575000.0, 168000.0], [575000.0, 169000.0], [576000.0, 169000.0], [576000.0, 168000.0]]]}}, {"id": "561", "type": "Feature", "properties": {"easting": 577500.0, "northing": 168500.0, "gridsq": "X577Y168", "numresp": 306, "numpeople": 716.04, "numkeys": 1, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 168000.0], [577000.0, 168000.0], [577000.0, 169000.0], [578000.0, 169000.0], [578000.0, 168000.0]]]}}, {"id": "562", "type": "Feature", "properties": {"easting": 578500.0, "northing": 168500.0, "gridsq": "X578Y168", "numresp": 248, "numpeople": 580.32, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[579000.0, 168000.0], [578000.0, 168000.0], [578000.0, 169000.0], [579000.0, 169000.0], [579000.0, 168000.0]]]}}, {"id": "563", "type": "Feature", "properties": {"easting": 617500.0, "northing": 168500.0, "gridsq": "X617Y168", "numresp": 246, "numpeople": 575.64, "numkeys": 4, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[618000.0, 168000.0], [617000.0, 168000.0], [617000.0, 169000.0], [618000.0, 169000.0], [618000.0, 168000.0]]]}}, {"id": "564", "type": "Feature", "properties": {"easting": 638500.0, "northing": 168500.0, "gridsq": "X638Y168", "numresp": 49, "numpeople": 114.66, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[639000.0, 168000.0], [638000.0, 168000.0], [638000.0, 169000.0], [639000.0, 169000.0], [639000.0, 168000.0]]]}}, {"id": "565", "type": "Feature", "properties": {"easting": 418500.0, "northing": 169500.0, "gridsq": "X418Y169", "numresp": 15, "numpeople": 35.1, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[419000.0, 169000.0], [418000.0, 169000.0], [418000.0, 170000.0], [419000.0, 170000.0], [419000.0, 169000.0]]]}}, {"id": "566", "type": "Feature", "properties": {"easting": 471500.0, "northing": 169500.0, "gridsq": "X471Y169", "numresp": 102, "numpeople": 238.68, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 169000.0], [471000.0, 169000.0], [471000.0, 170000.0], [472000.0, 170000.0], [472000.0, 169000.0]]]}}, {"id": "567", "type": "Feature", "properties": {"easting": 472500.0, "northing": 169500.0, "gridsq": "X472Y169", "numresp": 116, "numpeople": 271.44, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[473000.0, 169000.0], [472000.0, 169000.0], [472000.0, 170000.0], [473000.0, 170000.0], [473000.0, 169000.0]]]}}, {"id": "568", "type": "Feature", "properties": {"easting": 481500.0, "northing": 169500.0, "gridsq": "X481Y169", "numresp": 132, "numpeople": 308.88, "numkeys": 4, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[482000.0, 169000.0], [481000.0, 169000.0], [481000.0, 170000.0], [482000.0, 170000.0], [482000.0, 169000.0]]]}}, {"id": "569", "type": "Feature", "properties": {"easting": 485500.0, "northing": 169500.0, "gridsq": "X485Y169", "numresp": 112, "numpeople": 262.08, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 169000.0], [485000.0, 169000.0], [485000.0, 170000.0], [486000.0, 170000.0], [486000.0, 169000.0]]]}}, {"id": "570", "type": "Feature", "properties": {"easting": 487500.0, "northing": 169500.0, "gridsq": "X487Y169", "numresp": 98, "numpeople": 229.32, "numkeys": 0, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 169000.0], [487000.0, 169000.0], [487000.0, 170000.0], [488000.0, 170000.0], [488000.0, 169000.0]]]}}, {"id": "571", "type": "Feature", "properties": {"easting": 488500.0, "northing": 169500.0, "gridsq": "X488Y169", "numresp": 145, "numpeople": 339.3, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 169000.0], [488000.0, 169000.0], [488000.0, 170000.0], [489000.0, 170000.0], [489000.0, 169000.0]]]}}, {"id": "572", "type": "Feature", "properties": {"easting": 518500.0, "northing": 169500.0, "gridsq": "X518Y169", "numresp": 110, "numpeople": 257.4, "numkeys": 5, "numnonresp": 62, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 169000.0], [518000.0, 169000.0], [518000.0, 170000.0], [519000.0, 170000.0], [519000.0, 169000.0]]]}}, {"id": "573", "type": "Feature", "properties": {"easting": 519500.0, "northing": 169500.0, "gridsq": "X519Y169", "numresp": 113, "numpeople": 264.42, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 169000.0], [519000.0, 169000.0], [519000.0, 170000.0], [520000.0, 170000.0], [520000.0, 169000.0]]]}}, {"id": "574", "type": "Feature", "properties": {"easting": 523500.0, "northing": 169500.0, "gridsq": "X523Y169", "numresp": 172, "numpeople": 402.48, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 169000.0], [523000.0, 169000.0], [523000.0, 170000.0], [524000.0, 170000.0], [524000.0, 169000.0]]]}}, {"id": "575", "type": "Feature", "properties": {"easting": 530500.0, "northing": 169500.0, "gridsq": "X530Y169", "numresp": 200, "numpeople": 468.0, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 169000.0], [530000.0, 169000.0], [530000.0, 170000.0], [531000.0, 170000.0], [531000.0, 169000.0]]]}}, {"id": "576", "type": "Feature", "properties": {"easting": 531500.0, "northing": 169500.0, "gridsq": "X531Y169", "numresp": 169, "numpeople": 395.46, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 169000.0], [531000.0, 169000.0], [531000.0, 170000.0], [532000.0, 170000.0], [532000.0, 169000.0]]]}}, {"id": "577", "type": "Feature", "properties": {"easting": 534500.0, "northing": 169500.0, "gridsq": "X534Y169", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 169000.0], [534000.0, 169000.0], [534000.0, 170000.0], [535000.0, 170000.0], [535000.0, 169000.0]]]}}, {"id": "578", "type": "Feature", "properties": {"easting": 535500.0, "northing": 169500.0, "gridsq": "X535Y169", "numresp": 68, "numpeople": 159.12, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 169000.0], [535000.0, 169000.0], [535000.0, 170000.0], [536000.0, 170000.0], [536000.0, 169000.0]]]}}, {"id": "579", "type": "Feature", "properties": {"easting": 536500.0, "northing": 169500.0, "gridsq": "X536Y169", "numresp": 318, "numpeople": 744.12, "numkeys": 3, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 169000.0], [536000.0, 169000.0], [536000.0, 170000.0], [537000.0, 170000.0], [537000.0, 169000.0]]]}}, {"id": "580", "type": "Feature", "properties": {"easting": 537500.0, "northing": 169500.0, "gridsq": "X537Y169", "numresp": 190, "numpeople": 444.6, "numkeys": 2, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 169000.0], [537000.0, 169000.0], [537000.0, 170000.0], [538000.0, 170000.0], [538000.0, 169000.0]]]}}, {"id": "581", "type": "Feature", "properties": {"easting": 539500.0, "northing": 169500.0, "gridsq": "X539Y169", "numresp": 102, "numpeople": 238.68, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 169000.0], [539000.0, 169000.0], [539000.0, 170000.0], [540000.0, 170000.0], [540000.0, 169000.0]]]}}, {"id": "582", "type": "Feature", "properties": {"easting": 540500.0, "northing": 169500.0, "gridsq": "X540Y169", "numresp": 53, "numpeople": 124.02, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 169000.0], [540000.0, 169000.0], [540000.0, 170000.0], [541000.0, 170000.0], [541000.0, 169000.0]]]}}, {"id": "583", "type": "Feature", "properties": {"easting": 541500.0, "northing": 169500.0, "gridsq": "X541Y169", "numresp": 119, "numpeople": 278.46, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 169000.0], [541000.0, 169000.0], [541000.0, 170000.0], [542000.0, 170000.0], [542000.0, 169000.0]]]}}, {"id": "584", "type": "Feature", "properties": {"easting": 546500.0, "northing": 169500.0, "gridsq": "X546Y169", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 169000.0], [546000.0, 169000.0], [546000.0, 170000.0], [547000.0, 170000.0], [547000.0, 169000.0]]]}}, {"id": "585", "type": "Feature", "properties": {"easting": 550500.0, "northing": 169500.0, "gridsq": "X550Y169", "numresp": 101, "numpeople": 236.34, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[551000.0, 169000.0], [550000.0, 169000.0], [550000.0, 170000.0], [551000.0, 170000.0], [551000.0, 169000.0]]]}}, {"id": "586", "type": "Feature", "properties": {"easting": 572500.0, "northing": 169500.0, "gridsq": "X572Y169", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[573000.0, 169000.0], [572000.0, 169000.0], [572000.0, 170000.0], [573000.0, 170000.0], [573000.0, 169000.0]]]}}, {"id": "587", "type": "Feature", "properties": {"easting": 573500.0, "northing": 169500.0, "gridsq": "X573Y169", "numresp": 273, "numpeople": 638.82, "numkeys": 4, "numnonresp": 120, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[574000.0, 169000.0], [573000.0, 169000.0], [573000.0, 170000.0], [574000.0, 170000.0], [574000.0, 169000.0]]]}}, {"id": "588", "type": "Feature", "properties": {"easting": 577500.0, "northing": 169500.0, "gridsq": "X577Y169", "numresp": 118, "numpeople": 276.12, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 169000.0], [577000.0, 169000.0], [577000.0, 170000.0], [578000.0, 170000.0], [578000.0, 169000.0]]]}}, {"id": "589", "type": "Feature", "properties": {"easting": 632500.0, "northing": 169500.0, "gridsq": "X632Y169", "numresp": 103, "numpeople": 241.02, "numkeys": 3, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[633000.0, 169000.0], [632000.0, 169000.0], [632000.0, 170000.0], [633000.0, 170000.0], [633000.0, 169000.0]]]}}, {"id": "590", "type": "Feature", "properties": {"easting": 635500.0, "northing": 169500.0, "gridsq": "X635Y169", "numresp": 121, "numpeople": 283.14, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[636000.0, 169000.0], [635000.0, 169000.0], [635000.0, 170000.0], [636000.0, 170000.0], [636000.0, 169000.0]]]}}, {"id": "591", "type": "Feature", "properties": {"easting": 346500.0, "northing": 170500.0, "gridsq": "X346Y170", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[347000.0, 170000.0], [346000.0, 170000.0], [346000.0, 171000.0], [347000.0, 171000.0], [347000.0, 170000.0]]]}}, {"id": "592", "type": "Feature", "properties": {"easting": 475500.0, "northing": 170500.0, "gridsq": "X475Y170", "numresp": 145, "numpeople": 339.3, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[476000.0, 170000.0], [475000.0, 170000.0], [475000.0, 171000.0], [476000.0, 171000.0], [476000.0, 170000.0]]]}}, {"id": "593", "type": "Feature", "properties": {"easting": 486500.0, "northing": 170500.0, "gridsq": "X486Y170", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 170000.0], [486000.0, 170000.0], [486000.0, 171000.0], [487000.0, 171000.0], [487000.0, 170000.0]]]}}, {"id": "594", "type": "Feature", "properties": {"easting": 498500.0, "northing": 170500.0, "gridsq": "X498Y170", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 170000.0], [498000.0, 170000.0], [498000.0, 171000.0], [499000.0, 171000.0], [499000.0, 170000.0]]]}}, {"id": "595", "type": "Feature", "properties": {"easting": 499500.0, "northing": 170500.0, "gridsq": "X499Y170", "numresp": 185, "numpeople": 432.9, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 170000.0], [499000.0, 170000.0], [499000.0, 171000.0], [500000.0, 171000.0], [500000.0, 170000.0]]]}}, {"id": "596", "type": "Feature", "properties": {"easting": 515500.0, "northing": 170500.0, "gridsq": "X515Y170", "numresp": 10, "numpeople": 23.4, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 170000.0], [515000.0, 170000.0], [515000.0, 171000.0], [516000.0, 171000.0], [516000.0, 170000.0]]]}}, {"id": "597", "type": "Feature", "properties": {"easting": 518500.0, "northing": 170500.0, "gridsq": "X518Y170", "numresp": 112, "numpeople": 262.08, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 170000.0], [518000.0, 170000.0], [518000.0, 171000.0], [519000.0, 171000.0], [519000.0, 170000.0]]]}}, {"id": "598", "type": "Feature", "properties": {"easting": 524500.0, "northing": 170500.0, "gridsq": "X524Y170", "numresp": 44, "numpeople": 102.96, "numkeys": 2, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 170000.0], [524000.0, 170000.0], [524000.0, 171000.0], [525000.0, 171000.0], [525000.0, 170000.0]]]}}, {"id": "599", "type": "Feature", "properties": {"easting": 528500.0, "northing": 170500.0, "gridsq": "X528Y170", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 170000.0], [528000.0, 170000.0], [528000.0, 171000.0], [529000.0, 171000.0], [529000.0, 170000.0]]]}}, {"id": "600", "type": "Feature", "properties": {"easting": 529500.0, "northing": 170500.0, "gridsq": "X529Y170", "numresp": 231, "numpeople": 540.54, "numkeys": 3, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 170000.0], [529000.0, 170000.0], [529000.0, 171000.0], [530000.0, 171000.0], [530000.0, 170000.0]]]}}, {"id": "601", "type": "Feature", "properties": {"easting": 532500.0, "northing": 170500.0, "gridsq": "X532Y170", "numresp": 73, "numpeople": 170.82, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 170000.0], [532000.0, 170000.0], [532000.0, 171000.0], [533000.0, 171000.0], [533000.0, 170000.0]]]}}, {"id": "602", "type": "Feature", "properties": {"easting": 533500.0, "northing": 170500.0, "gridsq": "X533Y170", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 170000.0], [533000.0, 170000.0], [533000.0, 171000.0], [534000.0, 171000.0], [534000.0, 170000.0]]]}}, {"id": "603", "type": "Feature", "properties": {"easting": 534500.0, "northing": 170500.0, "gridsq": "X534Y170", "numresp": 194, "numpeople": 453.96, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 170000.0], [534000.0, 170000.0], [534000.0, 171000.0], [535000.0, 171000.0], [535000.0, 170000.0]]]}}, {"id": "604", "type": "Feature", "properties": {"easting": 535500.0, "northing": 170500.0, "gridsq": "X535Y170", "numresp": 103, "numpeople": 241.02, "numkeys": 2, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 170000.0], [535000.0, 170000.0], [535000.0, 171000.0], [536000.0, 171000.0], [536000.0, 170000.0]]]}}, {"id": "605", "type": "Feature", "properties": {"easting": 540500.0, "northing": 170500.0, "gridsq": "X540Y170", "numresp": 86, "numpeople": 201.24, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 170000.0], [540000.0, 170000.0], [540000.0, 171000.0], [541000.0, 171000.0], [541000.0, 170000.0]]]}}, {"id": "606", "type": "Feature", "properties": {"easting": 574500.0, "northing": 170500.0, "gridsq": "X574Y170", "numresp": 108, "numpeople": 252.72, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 170000.0], [574000.0, 170000.0], [574000.0, 171000.0], [575000.0, 171000.0], [575000.0, 170000.0]]]}}, {"id": "607", "type": "Feature", "properties": {"easting": 634500.0, "northing": 170500.0, "gridsq": "X634Y170", "numresp": 51, "numpeople": 119.34, "numkeys": 4, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[635000.0, 170000.0], [634000.0, 170000.0], [634000.0, 171000.0], [635000.0, 171000.0], [635000.0, 170000.0]]]}}, {"id": "608", "type": "Feature", "properties": {"easting": 635500.0, "northing": 170500.0, "gridsq": "X635Y170", "numresp": 173, "numpeople": 404.82, "numkeys": 2, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[636000.0, 170000.0], [635000.0, 170000.0], [635000.0, 171000.0], [636000.0, 171000.0], [636000.0, 170000.0]]]}}, {"id": "609", "type": "Feature", "properties": {"easting": 340500.0, "northing": 171500.0, "gridsq": "X340Y171", "numresp": 57, "numpeople": 133.38, "numkeys": 1, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[341000.0, 171000.0], [340000.0, 171000.0], [340000.0, 172000.0], [341000.0, 172000.0], [341000.0, 171000.0]]]}}, {"id": "610", "type": "Feature", "properties": {"easting": 366500.0, "northing": 171500.0, "gridsq": "X366Y171", "numresp": 141, "numpeople": 329.94, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 171000.0], [366000.0, 171000.0], [366000.0, 172000.0], [367000.0, 172000.0], [367000.0, 171000.0]]]}}, {"id": "611", "type": "Feature", "properties": {"easting": 400500.0, "northing": 171500.0, "gridsq": "X400Y171", "numresp": 105, "numpeople": 245.7, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 171000.0], [400000.0, 171000.0], [400000.0, 172000.0], [401000.0, 172000.0], [401000.0, 171000.0]]]}}, {"id": "612", "type": "Feature", "properties": {"easting": 467500.0, "northing": 171500.0, "gridsq": "X467Y171", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[468000.0, 171000.0], [467000.0, 171000.0], [467000.0, 172000.0], [468000.0, 172000.0], [468000.0, 171000.0]]]}}, {"id": "613", "type": "Feature", "properties": {"easting": 468500.0, "northing": 171500.0, "gridsq": "X468Y171", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[469000.0, 171000.0], [468000.0, 171000.0], [468000.0, 172000.0], [469000.0, 172000.0], [469000.0, 171000.0]]]}}, {"id": "614", "type": "Feature", "properties": {"easting": 471500.0, "northing": 171500.0, "gridsq": "X471Y171", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 171000.0], [471000.0, 171000.0], [471000.0, 172000.0], [472000.0, 172000.0], [472000.0, 171000.0]]]}}, {"id": "615", "type": "Feature", "properties": {"easting": 472500.0, "northing": 171500.0, "gridsq": "X472Y171", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[473000.0, 171000.0], [472000.0, 171000.0], [472000.0, 172000.0], [473000.0, 172000.0], [473000.0, 171000.0]]]}}, {"id": "616", "type": "Feature", "properties": {"easting": 473500.0, "northing": 171500.0, "gridsq": "X473Y171", "numresp": 15, "numpeople": 35.1, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[474000.0, 171000.0], [473000.0, 171000.0], [473000.0, 172000.0], [474000.0, 172000.0], [474000.0, 171000.0]]]}}, {"id": "617", "type": "Feature", "properties": {"easting": 478500.0, "northing": 171500.0, "gridsq": "X478Y171", "numresp": 34, "numpeople": 79.56, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[479000.0, 171000.0], [478000.0, 171000.0], [478000.0, 172000.0], [479000.0, 172000.0], [479000.0, 171000.0]]]}}, {"id": "618", "type": "Feature", "properties": {"easting": 500500.0, "northing": 171500.0, "gridsq": "X500Y171", "numresp": 97, "numpeople": 226.98, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[501000.0, 171000.0], [500000.0, 171000.0], [500000.0, 172000.0], [501000.0, 172000.0], [501000.0, 171000.0]]]}}, {"id": "619", "type": "Feature", "properties": {"easting": 520500.0, "northing": 171500.0, "gridsq": "X520Y171", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 171000.0], [520000.0, 171000.0], [520000.0, 172000.0], [521000.0, 172000.0], [521000.0, 171000.0]]]}}, {"id": "620", "type": "Feature", "properties": {"easting": 526500.0, "northing": 171500.0, "gridsq": "X526Y171", "numresp": 172, "numpeople": 402.48, "numkeys": 5, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 171000.0], [526000.0, 171000.0], [526000.0, 172000.0], [527000.0, 172000.0], [527000.0, 171000.0]]]}}, {"id": "621", "type": "Feature", "properties": {"easting": 527500.0, "northing": 171500.0, "gridsq": "X527Y171", "numresp": 328, "numpeople": 767.52, "numkeys": 8, "numnonresp": 79, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 171000.0], [527000.0, 171000.0], [527000.0, 172000.0], [528000.0, 172000.0], [528000.0, 171000.0]]]}}, {"id": "622", "type": "Feature", "properties": {"easting": 528500.0, "northing": 171500.0, "gridsq": "X528Y171", "numresp": 64, "numpeople": 149.76, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 171000.0], [528000.0, 171000.0], [528000.0, 172000.0], [529000.0, 172000.0], [529000.0, 171000.0]]]}}, {"id": "623", "type": "Feature", "properties": {"easting": 529500.0, "northing": 171500.0, "gridsq": "X529Y171", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 171000.0], [529000.0, 171000.0], [529000.0, 172000.0], [530000.0, 172000.0], [530000.0, 171000.0]]]}}, {"id": "624", "type": "Feature", "properties": {"easting": 530500.0, "northing": 171500.0, "gridsq": "X530Y171", "numresp": 209, "numpeople": 489.06, "numkeys": 4, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 171000.0], [530000.0, 171000.0], [530000.0, 172000.0], [531000.0, 172000.0], [531000.0, 171000.0]]]}}, {"id": "625", "type": "Feature", "properties": {"easting": 532500.0, "northing": 171500.0, "gridsq": "X532Y171", "numresp": 260, "numpeople": 608.4, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 171000.0], [532000.0, 171000.0], [532000.0, 172000.0], [533000.0, 172000.0], [533000.0, 171000.0]]]}}, {"id": "626", "type": "Feature", "properties": {"easting": 534500.0, "northing": 171500.0, "gridsq": "X534Y171", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 171000.0], [534000.0, 171000.0], [534000.0, 172000.0], [535000.0, 172000.0], [535000.0, 171000.0]]]}}, {"id": "627", "type": "Feature", "properties": {"easting": 535500.0, "northing": 171500.0, "gridsq": "X535Y171", "numresp": 166, "numpeople": 388.44, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 171000.0], [535000.0, 171000.0], [535000.0, 172000.0], [536000.0, 172000.0], [536000.0, 171000.0]]]}}, {"id": "628", "type": "Feature", "properties": {"easting": 536500.0, "northing": 171500.0, "gridsq": "X536Y171", "numresp": 167, "numpeople": 390.78, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 171000.0], [536000.0, 171000.0], [536000.0, 172000.0], [537000.0, 172000.0], [537000.0, 171000.0]]]}}, {"id": "629", "type": "Feature", "properties": {"easting": 538500.0, "northing": 171500.0, "gridsq": "X538Y171", "numresp": 250, "numpeople": 585.0, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 171000.0], [538000.0, 171000.0], [538000.0, 172000.0], [539000.0, 172000.0], [539000.0, 171000.0]]]}}, {"id": "630", "type": "Feature", "properties": {"easting": 546500.0, "northing": 171500.0, "gridsq": "X546Y171", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 171000.0], [546000.0, 171000.0], [546000.0, 172000.0], [547000.0, 172000.0], [547000.0, 171000.0]]]}}, {"id": "631", "type": "Feature", "properties": {"easting": 547500.0, "northing": 171500.0, "gridsq": "X547Y171", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 171000.0], [547000.0, 171000.0], [547000.0, 172000.0], [548000.0, 172000.0], [548000.0, 171000.0]]]}}, {"id": "632", "type": "Feature", "properties": {"easting": 602500.0, "northing": 171500.0, "gridsq": "X602Y171", "numresp": 23, "numpeople": 53.82, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[603000.0, 171000.0], [602000.0, 171000.0], [602000.0, 172000.0], [603000.0, 172000.0], [603000.0, 171000.0]]]}}, {"id": "633", "type": "Feature", "properties": {"easting": 635500.0, "northing": 171500.0, "gridsq": "X635Y171", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[636000.0, 171000.0], [635000.0, 171000.0], [635000.0, 172000.0], [636000.0, 172000.0], [636000.0, 171000.0]]]}}, {"id": "634", "type": "Feature", "properties": {"easting": 363500.0, "northing": 172500.0, "gridsq": "X363Y172", "numresp": 25, "numpeople": 58.5, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[364000.0, 172000.0], [363000.0, 172000.0], [363000.0, 173000.0], [364000.0, 173000.0], [364000.0, 172000.0]]]}}, {"id": "635", "type": "Feature", "properties": {"easting": 468500.0, "northing": 172500.0, "gridsq": "X468Y172", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[469000.0, 172000.0], [468000.0, 172000.0], [468000.0, 173000.0], [469000.0, 173000.0], [469000.0, 172000.0]]]}}, {"id": "636", "type": "Feature", "properties": {"easting": 470500.0, "northing": 172500.0, "gridsq": "X470Y172", "numresp": 107, "numpeople": 250.38, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[471000.0, 172000.0], [470000.0, 172000.0], [470000.0, 173000.0], [471000.0, 173000.0], [471000.0, 172000.0]]]}}, {"id": "637", "type": "Feature", "properties": {"easting": 476500.0, "northing": 172500.0, "gridsq": "X476Y172", "numresp": 111, "numpeople": 259.74, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[477000.0, 172000.0], [476000.0, 172000.0], [476000.0, 173000.0], [477000.0, 173000.0], [477000.0, 172000.0]]]}}, {"id": "638", "type": "Feature", "properties": {"easting": 477500.0, "northing": 172500.0, "gridsq": "X477Y172", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[478000.0, 172000.0], [477000.0, 172000.0], [477000.0, 173000.0], [478000.0, 173000.0], [478000.0, 172000.0]]]}}, {"id": "639", "type": "Feature", "properties": {"easting": 525500.0, "northing": 172500.0, "gridsq": "X525Y172", "numresp": 121, "numpeople": 283.14, "numkeys": 1, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 172000.0], [525000.0, 172000.0], [525000.0, 173000.0], [526000.0, 173000.0], [526000.0, 172000.0]]]}}, {"id": "640", "type": "Feature", "properties": {"easting": 526500.0, "northing": 172500.0, "gridsq": "X526Y172", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 172000.0], [526000.0, 172000.0], [526000.0, 173000.0], [527000.0, 173000.0], [527000.0, 172000.0]]]}}, {"id": "641", "type": "Feature", "properties": {"easting": 528500.0, "northing": 172500.0, "gridsq": "X528Y172", "numresp": 193, "numpeople": 451.62, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 172000.0], [528000.0, 172000.0], [528000.0, 173000.0], [529000.0, 173000.0], [529000.0, 172000.0]]]}}, {"id": "642", "type": "Feature", "properties": {"easting": 530500.0, "northing": 172500.0, "gridsq": "X530Y172", "numresp": 107, "numpeople": 250.38, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 172000.0], [530000.0, 172000.0], [530000.0, 173000.0], [531000.0, 173000.0], [531000.0, 172000.0]]]}}, {"id": "643", "type": "Feature", "properties": {"easting": 531500.0, "northing": 172500.0, "gridsq": "X531Y172", "numresp": 93, "numpeople": 217.62, "numkeys": 2, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 172000.0], [531000.0, 172000.0], [531000.0, 173000.0], [532000.0, 173000.0], [532000.0, 172000.0]]]}}, {"id": "644", "type": "Feature", "properties": {"easting": 532500.0, "northing": 172500.0, "gridsq": "X532Y172", "numresp": 498, "numpeople": 1165.32, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 172000.0], [532000.0, 172000.0], [532000.0, 173000.0], [533000.0, 173000.0], [533000.0, 172000.0]]]}}, {"id": "645", "type": "Feature", "properties": {"easting": 535500.0, "northing": 172500.0, "gridsq": "X535Y172", "numresp": 161, "numpeople": 376.74, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 172000.0], [535000.0, 172000.0], [535000.0, 173000.0], [536000.0, 173000.0], [536000.0, 172000.0]]]}}, {"id": "646", "type": "Feature", "properties": {"easting": 536500.0, "northing": 172500.0, "gridsq": "X536Y172", "numresp": 58, "numpeople": 135.72, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 172000.0], [536000.0, 172000.0], [536000.0, 173000.0], [537000.0, 173000.0], [537000.0, 172000.0]]]}}, {"id": "647", "type": "Feature", "properties": {"easting": 537500.0, "northing": 172500.0, "gridsq": "X537Y172", "numresp": 95, "numpeople": 222.3, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 172000.0], [537000.0, 172000.0], [537000.0, 173000.0], [538000.0, 173000.0], [538000.0, 172000.0]]]}}, {"id": "648", "type": "Feature", "properties": {"easting": 540500.0, "northing": 172500.0, "gridsq": "X540Y172", "numresp": 138, "numpeople": 322.92, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 172000.0], [540000.0, 172000.0], [540000.0, 173000.0], [541000.0, 173000.0], [541000.0, 172000.0]]]}}, {"id": "649", "type": "Feature", "properties": {"easting": 541500.0, "northing": 172500.0, "gridsq": "X541Y172", "numresp": 84, "numpeople": 196.56, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 172000.0], [541000.0, 172000.0], [541000.0, 173000.0], [542000.0, 173000.0], [542000.0, 172000.0]]]}}, {"id": "650", "type": "Feature", "properties": {"easting": 542500.0, "northing": 172500.0, "gridsq": "X542Y172", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 172000.0], [542000.0, 172000.0], [542000.0, 173000.0], [543000.0, 173000.0], [543000.0, 172000.0]]]}}, {"id": "651", "type": "Feature", "properties": {"easting": 544500.0, "northing": 172500.0, "gridsq": "X544Y172", "numresp": 89, "numpeople": 208.26, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 172000.0], [544000.0, 172000.0], [544000.0, 173000.0], [545000.0, 173000.0], [545000.0, 172000.0]]]}}, {"id": "652", "type": "Feature", "properties": {"easting": 546500.0, "northing": 172500.0, "gridsq": "X546Y172", "numresp": 101, "numpeople": 236.34, "numkeys": 4, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 172000.0], [546000.0, 172000.0], [546000.0, 173000.0], [547000.0, 173000.0], [547000.0, 172000.0]]]}}, {"id": "653", "type": "Feature", "properties": {"easting": 562500.0, "northing": 172500.0, "gridsq": "X562Y172", "numresp": 52, "numpeople": 121.68, "numkeys": 4, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 172000.0], [562000.0, 172000.0], [562000.0, 173000.0], [563000.0, 173000.0], [563000.0, 172000.0]]]}}, {"id": "654", "type": "Feature", "properties": {"easting": 564500.0, "northing": 172500.0, "gridsq": "X564Y172", "numresp": 97, "numpeople": 226.98, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 172000.0], [564000.0, 172000.0], [564000.0, 173000.0], [565000.0, 173000.0], [565000.0, 172000.0]]]}}, {"id": "655", "type": "Feature", "properties": {"easting": 565500.0, "northing": 172500.0, "gridsq": "X565Y172", "numresp": 140, "numpeople": 327.6, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[566000.0, 172000.0], [565000.0, 172000.0], [565000.0, 173000.0], [566000.0, 173000.0], [566000.0, 172000.0]]]}}, {"id": "656", "type": "Feature", "properties": {"easting": 566500.0, "northing": 172500.0, "gridsq": "X566Y172", "numresp": 164, "numpeople": 383.76, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[567000.0, 172000.0], [566000.0, 172000.0], [566000.0, 173000.0], [567000.0, 173000.0], [567000.0, 172000.0]]]}}, {"id": "657", "type": "Feature", "properties": {"easting": 577500.0, "northing": 172500.0, "gridsq": "X577Y172", "numresp": 106, "numpeople": 248.04, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 172000.0], [577000.0, 172000.0], [577000.0, 173000.0], [578000.0, 173000.0], [578000.0, 172000.0]]]}}, {"id": "658", "type": "Feature", "properties": {"easting": 594500.0, "northing": 172500.0, "gridsq": "X594Y172", "numresp": 142, "numpeople": 332.28, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[595000.0, 172000.0], [594000.0, 172000.0], [594000.0, 173000.0], [595000.0, 173000.0], [595000.0, 172000.0]]]}}, {"id": "659", "type": "Feature", "properties": {"easting": 363500.0, "northing": 173500.0, "gridsq": "X363Y173", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[364000.0, 173000.0], [363000.0, 173000.0], [363000.0, 174000.0], [364000.0, 174000.0], [364000.0, 173000.0]]]}}, {"id": "660", "type": "Feature", "properties": {"easting": 366500.0, "northing": 173500.0, "gridsq": "X366Y173", "numresp": 130, "numpeople": 304.2, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 173000.0], [366000.0, 173000.0], [366000.0, 174000.0], [367000.0, 174000.0], [367000.0, 173000.0]]]}}, {"id": "661", "type": "Feature", "properties": {"easting": 391500.0, "northing": 173500.0, "gridsq": "X391Y173", "numresp": 86, "numpeople": 201.24, "numkeys": 1, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 173000.0], [391000.0, 173000.0], [391000.0, 174000.0], [392000.0, 174000.0], [392000.0, 173000.0]]]}}, {"id": "662", "type": "Feature", "properties": {"easting": 468500.0, "northing": 173500.0, "gridsq": "X468Y173", "numresp": 201, "numpeople": 470.34, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[469000.0, 173000.0], [468000.0, 173000.0], [468000.0, 174000.0], [469000.0, 174000.0], [469000.0, 173000.0]]]}}, {"id": "663", "type": "Feature", "properties": {"easting": 469500.0, "northing": 173500.0, "gridsq": "X469Y173", "numresp": 181, "numpeople": 423.54, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[470000.0, 173000.0], [469000.0, 173000.0], [469000.0, 174000.0], [470000.0, 174000.0], [470000.0, 173000.0]]]}}, {"id": "664", "type": "Feature", "properties": {"easting": 470500.0, "northing": 173500.0, "gridsq": "X470Y173", "numresp": 212, "numpeople": 496.08, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[471000.0, 173000.0], [470000.0, 173000.0], [470000.0, 174000.0], [471000.0, 174000.0], [471000.0, 173000.0]]]}}, {"id": "665", "type": "Feature", "properties": {"easting": 471500.0, "northing": 173500.0, "gridsq": "X471Y173", "numresp": 35, "numpeople": 81.9, "numkeys": 2, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 173000.0], [471000.0, 173000.0], [471000.0, 174000.0], [472000.0, 174000.0], [472000.0, 173000.0]]]}}, {"id": "666", "type": "Feature", "properties": {"easting": 472500.0, "northing": 173500.0, "gridsq": "X472Y173", "numresp": 319, "numpeople": 746.46, "numkeys": 3, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[473000.0, 173000.0], [472000.0, 173000.0], [472000.0, 174000.0], [473000.0, 174000.0], [473000.0, 173000.0]]]}}, {"id": "667", "type": "Feature", "properties": {"easting": 473500.0, "northing": 173500.0, "gridsq": "X473Y173", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[474000.0, 173000.0], [473000.0, 173000.0], [473000.0, 174000.0], [474000.0, 174000.0], [474000.0, 173000.0]]]}}, {"id": "668", "type": "Feature", "properties": {"easting": 474500.0, "northing": 173500.0, "gridsq": "X474Y173", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[475000.0, 173000.0], [474000.0, 173000.0], [474000.0, 174000.0], [475000.0, 174000.0], [475000.0, 173000.0]]]}}, {"id": "669", "type": "Feature", "properties": {"easting": 498500.0, "northing": 173500.0, "gridsq": "X498Y173", "numresp": 58, "numpeople": 135.72, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 173000.0], [498000.0, 173000.0], [498000.0, 174000.0], [499000.0, 174000.0], [499000.0, 173000.0]]]}}, {"id": "670", "type": "Feature", "properties": {"easting": 521500.0, "northing": 173500.0, "gridsq": "X521Y173", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 173000.0], [521000.0, 173000.0], [521000.0, 174000.0], [522000.0, 174000.0], [522000.0, 173000.0]]]}}, {"id": "671", "type": "Feature", "properties": {"easting": 522500.0, "northing": 173500.0, "gridsq": "X522Y173", "numresp": 25, "numpeople": 58.5, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 173000.0], [522000.0, 173000.0], [522000.0, 174000.0], [523000.0, 174000.0], [523000.0, 173000.0]]]}}, {"id": "672", "type": "Feature", "properties": {"easting": 525500.0, "northing": 173500.0, "gridsq": "X525Y173", "numresp": 243, "numpeople": 568.62, "numkeys": 3, "numnonresp": 81, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 173000.0], [525000.0, 173000.0], [525000.0, 174000.0], [526000.0, 174000.0], [526000.0, 173000.0]]]}}, {"id": "673", "type": "Feature", "properties": {"easting": 526500.0, "northing": 173500.0, "gridsq": "X526Y173", "numresp": 94, "numpeople": 219.96, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 173000.0], [526000.0, 173000.0], [526000.0, 174000.0], [527000.0, 174000.0], [527000.0, 173000.0]]]}}, {"id": "674", "type": "Feature", "properties": {"easting": 528500.0, "northing": 173500.0, "gridsq": "X528Y173", "numresp": 692, "numpeople": 1619.28, "numkeys": 6, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 173000.0], [528000.0, 173000.0], [528000.0, 174000.0], [529000.0, 174000.0], [529000.0, 173000.0]]]}}, {"id": "675", "type": "Feature", "properties": {"easting": 529500.0, "northing": 173500.0, "gridsq": "X529Y173", "numresp": 178, "numpeople": 416.52, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 173000.0], [529000.0, 173000.0], [529000.0, 174000.0], [530000.0, 174000.0], [530000.0, 173000.0]]]}}, {"id": "676", "type": "Feature", "properties": {"easting": 530500.0, "northing": 173500.0, "gridsq": "X530Y173", "numresp": 105, "numpeople": 245.7, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 173000.0], [530000.0, 173000.0], [530000.0, 174000.0], [531000.0, 174000.0], [531000.0, 173000.0]]]}}, {"id": "677", "type": "Feature", "properties": {"easting": 532500.0, "northing": 173500.0, "gridsq": "X532Y173", "numresp": 145, "numpeople": 339.3, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 173000.0], [532000.0, 173000.0], [532000.0, 174000.0], [533000.0, 174000.0], [533000.0, 173000.0]]]}}, {"id": "678", "type": "Feature", "properties": {"easting": 535500.0, "northing": 173500.0, "gridsq": "X535Y173", "numresp": 239, "numpeople": 559.26, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 173000.0], [535000.0, 173000.0], [535000.0, 174000.0], [536000.0, 174000.0], [536000.0, 173000.0]]]}}, {"id": "679", "type": "Feature", "properties": {"easting": 536500.0, "northing": 173500.0, "gridsq": "X536Y173", "numresp": 232, "numpeople": 542.88, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 173000.0], [536000.0, 173000.0], [536000.0, 174000.0], [537000.0, 174000.0], [537000.0, 173000.0]]]}}, {"id": "680", "type": "Feature", "properties": {"easting": 537500.0, "northing": 173500.0, "gridsq": "X537Y173", "numresp": 127, "numpeople": 297.18, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 173000.0], [537000.0, 173000.0], [537000.0, 174000.0], [538000.0, 174000.0], [538000.0, 173000.0]]]}}, {"id": "681", "type": "Feature", "properties": {"easting": 539500.0, "northing": 173500.0, "gridsq": "X539Y173", "numresp": 316, "numpeople": 739.44, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 173000.0], [539000.0, 173000.0], [539000.0, 174000.0], [540000.0, 174000.0], [540000.0, 173000.0]]]}}, {"id": "682", "type": "Feature", "properties": {"easting": 553500.0, "northing": 173500.0, "gridsq": "X553Y173", "numresp": 125, "numpeople": 292.5, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 173000.0], [553000.0, 173000.0], [553000.0, 174000.0], [554000.0, 174000.0], [554000.0, 173000.0]]]}}, {"id": "683", "type": "Feature", "properties": {"easting": 554500.0, "northing": 173500.0, "gridsq": "X554Y173", "numresp": 41, "numpeople": 95.94, "numkeys": 2, "numnonresp": 68, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[555000.0, 173000.0], [554000.0, 173000.0], [554000.0, 174000.0], [555000.0, 174000.0], [555000.0, 173000.0]]]}}, {"id": "684", "type": "Feature", "properties": {"easting": 562500.0, "northing": 173500.0, "gridsq": "X562Y173", "numresp": 42, "numpeople": 98.28, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 173000.0], [562000.0, 173000.0], [562000.0, 174000.0], [563000.0, 174000.0], [563000.0, 173000.0]]]}}, {"id": "685", "type": "Feature", "properties": {"easting": 563500.0, "northing": 173500.0, "gridsq": "X563Y173", "numresp": 471, "numpeople": 1102.14, "numkeys": 0, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[564000.0, 173000.0], [563000.0, 173000.0], [563000.0, 174000.0], [564000.0, 174000.0], [564000.0, 173000.0]]]}}, {"id": "686", "type": "Feature", "properties": {"easting": 564500.0, "northing": 173500.0, "gridsq": "X564Y173", "numresp": 268, "numpeople": 627.12, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 173000.0], [564000.0, 173000.0], [564000.0, 174000.0], [565000.0, 174000.0], [565000.0, 173000.0]]]}}, {"id": "687", "type": "Feature", "properties": {"easting": 566500.0, "northing": 173500.0, "gridsq": "X566Y173", "numresp": 317, "numpeople": 741.78, "numkeys": 4, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[567000.0, 173000.0], [566000.0, 173000.0], [566000.0, 174000.0], [567000.0, 174000.0], [567000.0, 173000.0]]]}}, {"id": "688", "type": "Feature", "properties": {"easting": 573500.0, "northing": 173500.0, "gridsq": "X573Y173", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[574000.0, 173000.0], [573000.0, 173000.0], [573000.0, 174000.0], [574000.0, 174000.0], [574000.0, 173000.0]]]}}, {"id": "689", "type": "Feature", "properties": {"easting": 361500.0, "northing": 174500.0, "gridsq": "X361Y174", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[362000.0, 174000.0], [361000.0, 174000.0], [361000.0, 175000.0], [362000.0, 175000.0], [362000.0, 174000.0]]]}}, {"id": "690", "type": "Feature", "properties": {"easting": 365500.0, "northing": 174500.0, "gridsq": "X365Y174", "numresp": 85, "numpeople": 198.9, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[366000.0, 174000.0], [365000.0, 174000.0], [365000.0, 175000.0], [366000.0, 175000.0], [366000.0, 174000.0]]]}}, {"id": "691", "type": "Feature", "properties": {"easting": 468500.0, "northing": 174500.0, "gridsq": "X468Y174", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[469000.0, 174000.0], [468000.0, 174000.0], [468000.0, 175000.0], [469000.0, 175000.0], [469000.0, 174000.0]]]}}, {"id": "692", "type": "Feature", "properties": {"easting": 471500.0, "northing": 174500.0, "gridsq": "X471Y174", "numresp": 95, "numpeople": 222.3, "numkeys": 2, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 174000.0], [471000.0, 174000.0], [471000.0, 175000.0], [472000.0, 175000.0], [472000.0, 174000.0]]]}}, {"id": "693", "type": "Feature", "properties": {"easting": 498500.0, "northing": 174500.0, "gridsq": "X498Y174", "numresp": 343, "numpeople": 802.62, "numkeys": 1, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 174000.0], [498000.0, 174000.0], [498000.0, 175000.0], [499000.0, 175000.0], [499000.0, 174000.0]]]}}, {"id": "694", "type": "Feature", "properties": {"easting": 523500.0, "northing": 174500.0, "gridsq": "X523Y174", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 174000.0], [523000.0, 174000.0], [523000.0, 175000.0], [524000.0, 175000.0], [524000.0, 174000.0]]]}}, {"id": "695", "type": "Feature", "properties": {"easting": 524500.0, "northing": 174500.0, "gridsq": "X524Y174", "numresp": 113, "numpeople": 264.42, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 174000.0], [524000.0, 174000.0], [524000.0, 175000.0], [525000.0, 175000.0], [525000.0, 174000.0]]]}}, {"id": "696", "type": "Feature", "properties": {"easting": 525500.0, "northing": 174500.0, "gridsq": "X525Y174", "numresp": 59, "numpeople": 138.06, "numkeys": 3, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 174000.0], [525000.0, 174000.0], [525000.0, 175000.0], [526000.0, 175000.0], [526000.0, 174000.0]]]}}, {"id": "697", "type": "Feature", "properties": {"easting": 527500.0, "northing": 174500.0, "gridsq": "X527Y174", "numresp": 122, "numpeople": 285.48, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 174000.0], [527000.0, 174000.0], [527000.0, 175000.0], [528000.0, 175000.0], [528000.0, 174000.0]]]}}, {"id": "698", "type": "Feature", "properties": {"easting": 529500.0, "northing": 174500.0, "gridsq": "X529Y174", "numresp": 138, "numpeople": 322.92, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 174000.0], [529000.0, 174000.0], [529000.0, 175000.0], [530000.0, 175000.0], [530000.0, 174000.0]]]}}, {"id": "699", "type": "Feature", "properties": {"easting": 531500.0, "northing": 174500.0, "gridsq": "X531Y174", "numresp": 559, "numpeople": 1308.06, "numkeys": 2, "numnonresp": 174, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 174000.0], [531000.0, 174000.0], [531000.0, 175000.0], [532000.0, 175000.0], [532000.0, 174000.0]]]}}, {"id": "700", "type": "Feature", "properties": {"easting": 532500.0, "northing": 174500.0, "gridsq": "X532Y174", "numresp": 185, "numpeople": 432.9, "numkeys": 3, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 174000.0], [532000.0, 174000.0], [532000.0, 175000.0], [533000.0, 175000.0], [533000.0, 174000.0]]]}}, {"id": "701", "type": "Feature", "properties": {"easting": 533500.0, "northing": 174500.0, "gridsq": "X533Y174", "numresp": 146, "numpeople": 341.64, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 174000.0], [533000.0, 174000.0], [533000.0, 175000.0], [534000.0, 175000.0], [534000.0, 174000.0]]]}}, {"id": "702", "type": "Feature", "properties": {"easting": 534500.0, "northing": 174500.0, "gridsq": "X534Y174", "numresp": 110, "numpeople": 257.4, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 174000.0], [534000.0, 174000.0], [534000.0, 175000.0], [535000.0, 175000.0], [535000.0, 174000.0]]]}}, {"id": "703", "type": "Feature", "properties": {"easting": 536500.0, "northing": 174500.0, "gridsq": "X536Y174", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 174000.0], [536000.0, 174000.0], [536000.0, 175000.0], [537000.0, 175000.0], [537000.0, 174000.0]]]}}, {"id": "704", "type": "Feature", "properties": {"easting": 537500.0, "northing": 174500.0, "gridsq": "X537Y174", "numresp": 206, "numpeople": 482.04, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 174000.0], [537000.0, 174000.0], [537000.0, 175000.0], [538000.0, 175000.0], [538000.0, 174000.0]]]}}, {"id": "705", "type": "Feature", "properties": {"easting": 538500.0, "northing": 174500.0, "gridsq": "X538Y174", "numresp": 136, "numpeople": 318.24, "numkeys": 3, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 174000.0], [538000.0, 174000.0], [538000.0, 175000.0], [539000.0, 175000.0], [539000.0, 174000.0]]]}}, {"id": "706", "type": "Feature", "properties": {"easting": 539500.0, "northing": 174500.0, "gridsq": "X539Y174", "numresp": 174, "numpeople": 407.16, "numkeys": 4, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 174000.0], [539000.0, 174000.0], [539000.0, 175000.0], [540000.0, 175000.0], [540000.0, 174000.0]]]}}, {"id": "707", "type": "Feature", "properties": {"easting": 541500.0, "northing": 174500.0, "gridsq": "X541Y174", "numresp": 118, "numpeople": 276.12, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 174000.0], [541000.0, 174000.0], [541000.0, 175000.0], [542000.0, 175000.0], [542000.0, 174000.0]]]}}, {"id": "708", "type": "Feature", "properties": {"easting": 544500.0, "northing": 174500.0, "gridsq": "X544Y174", "numresp": 42, "numpeople": 98.28, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 174000.0], [544000.0, 174000.0], [544000.0, 175000.0], [545000.0, 175000.0], [545000.0, 174000.0]]]}}, {"id": "709", "type": "Feature", "properties": {"easting": 545500.0, "northing": 174500.0, "gridsq": "X545Y174", "numresp": 194, "numpeople": 453.96, "numkeys": 3, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 174000.0], [545000.0, 174000.0], [545000.0, 175000.0], [546000.0, 175000.0], [546000.0, 174000.0]]]}}, {"id": "710", "type": "Feature", "properties": {"easting": 550500.0, "northing": 174500.0, "gridsq": "X550Y174", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[551000.0, 174000.0], [550000.0, 174000.0], [550000.0, 175000.0], [551000.0, 175000.0], [551000.0, 174000.0]]]}}, {"id": "711", "type": "Feature", "properties": {"easting": 552500.0, "northing": 174500.0, "gridsq": "X552Y174", "numresp": 99, "numpeople": 231.66, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[553000.0, 174000.0], [552000.0, 174000.0], [552000.0, 175000.0], [553000.0, 175000.0], [553000.0, 174000.0]]]}}, {"id": "712", "type": "Feature", "properties": {"easting": 553500.0, "northing": 174500.0, "gridsq": "X553Y174", "numresp": 78, "numpeople": 182.52, "numkeys": 2, "numnonresp": 81, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 174000.0], [553000.0, 174000.0], [553000.0, 175000.0], [554000.0, 175000.0], [554000.0, 174000.0]]]}}, {"id": "713", "type": "Feature", "properties": {"easting": 554500.0, "northing": 174500.0, "gridsq": "X554Y174", "numresp": 29, "numpeople": 67.86, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[555000.0, 174000.0], [554000.0, 174000.0], [554000.0, 175000.0], [555000.0, 175000.0], [555000.0, 174000.0]]]}}, {"id": "714", "type": "Feature", "properties": {"easting": 555500.0, "northing": 174500.0, "gridsq": "X555Y174", "numresp": 110, "numpeople": 257.4, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[556000.0, 174000.0], [555000.0, 174000.0], [555000.0, 175000.0], [556000.0, 175000.0], [556000.0, 174000.0]]]}}, {"id": "715", "type": "Feature", "properties": {"easting": 558500.0, "northing": 174500.0, "gridsq": "X558Y174", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 174000.0], [558000.0, 174000.0], [558000.0, 175000.0], [559000.0, 175000.0], [559000.0, 174000.0]]]}}, {"id": "716", "type": "Feature", "properties": {"easting": 564500.0, "northing": 174500.0, "gridsq": "X564Y174", "numresp": 36, "numpeople": 84.24, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 174000.0], [564000.0, 174000.0], [564000.0, 175000.0], [565000.0, 175000.0], [565000.0, 174000.0]]]}}, {"id": "717", "type": "Feature", "properties": {"easting": 366500.0, "northing": 175500.0, "gridsq": "X366Y175", "numresp": 5, "numpeople": 11.7, "numkeys": 0, "numnonresp": 54, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 175000.0], [366000.0, 175000.0], [366000.0, 176000.0], [367000.0, 176000.0], [367000.0, 175000.0]]]}}, {"id": "718", "type": "Feature", "properties": {"easting": 388500.0, "northing": 175500.0, "gridsq": "X388Y175", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 175000.0], [388000.0, 175000.0], [388000.0, 176000.0], [389000.0, 176000.0], [389000.0, 175000.0]]]}}, {"id": "719", "type": "Feature", "properties": {"easting": 471500.0, "northing": 175500.0, "gridsq": "X471Y175", "numresp": 131, "numpeople": 306.54, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 175000.0], [471000.0, 175000.0], [471000.0, 176000.0], [472000.0, 176000.0], [472000.0, 175000.0]]]}}, {"id": "720", "type": "Feature", "properties": {"easting": 475500.0, "northing": 175500.0, "gridsq": "X475Y175", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[476000.0, 175000.0], [475000.0, 175000.0], [475000.0, 176000.0], [476000.0, 176000.0], [476000.0, 175000.0]]]}}, {"id": "721", "type": "Feature", "properties": {"easting": 496500.0, "northing": 175500.0, "gridsq": "X496Y175", "numresp": 210, "numpeople": 491.4, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 175000.0], [496000.0, 175000.0], [496000.0, 176000.0], [497000.0, 176000.0], [497000.0, 175000.0]]]}}, {"id": "722", "type": "Feature", "properties": {"easting": 513500.0, "northing": 175500.0, "gridsq": "X513Y175", "numresp": 408, "numpeople": 954.72, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 175000.0], [513000.0, 175000.0], [513000.0, 176000.0], [514000.0, 176000.0], [514000.0, 175000.0]]]}}, {"id": "723", "type": "Feature", "properties": {"easting": 514500.0, "northing": 175500.0, "gridsq": "X514Y175", "numresp": 26, "numpeople": 60.84, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 175000.0], [514000.0, 175000.0], [514000.0, 176000.0], [515000.0, 176000.0], [515000.0, 175000.0]]]}}, {"id": "724", "type": "Feature", "properties": {"easting": 517500.0, "northing": 175500.0, "gridsq": "X517Y175", "numresp": 20, "numpeople": 46.8, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 175000.0], [517000.0, 175000.0], [517000.0, 176000.0], [518000.0, 176000.0], [518000.0, 175000.0]]]}}, {"id": "725", "type": "Feature", "properties": {"easting": 518500.0, "northing": 175500.0, "gridsq": "X518Y175", "numresp": 79, "numpeople": 184.86, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 175000.0], [518000.0, 175000.0], [518000.0, 176000.0], [519000.0, 176000.0], [519000.0, 175000.0]]]}}, {"id": "726", "type": "Feature", "properties": {"easting": 519500.0, "northing": 175500.0, "gridsq": "X519Y175", "numresp": 190, "numpeople": 444.6, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 175000.0], [519000.0, 175000.0], [519000.0, 176000.0], [520000.0, 176000.0], [520000.0, 175000.0]]]}}, {"id": "727", "type": "Feature", "properties": {"easting": 520500.0, "northing": 175500.0, "gridsq": "X520Y175", "numresp": 107, "numpeople": 250.38, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 175000.0], [520000.0, 175000.0], [520000.0, 176000.0], [521000.0, 176000.0], [521000.0, 175000.0]]]}}, {"id": "728", "type": "Feature", "properties": {"easting": 522500.0, "northing": 175500.0, "gridsq": "X522Y175", "numresp": 259, "numpeople": 606.06, "numkeys": 3, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 175000.0], [522000.0, 175000.0], [522000.0, 176000.0], [523000.0, 176000.0], [523000.0, 175000.0]]]}}, {"id": "729", "type": "Feature", "properties": {"easting": 523500.0, "northing": 175500.0, "gridsq": "X523Y175", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 175000.0], [523000.0, 175000.0], [523000.0, 176000.0], [524000.0, 176000.0], [524000.0, 175000.0]]]}}, {"id": "730", "type": "Feature", "properties": {"easting": 524500.0, "northing": 175500.0, "gridsq": "X524Y175", "numresp": 124, "numpeople": 290.16, "numkeys": 3, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 175000.0], [524000.0, 175000.0], [524000.0, 176000.0], [525000.0, 176000.0], [525000.0, 175000.0]]]}}, {"id": "731", "type": "Feature", "properties": {"easting": 525500.0, "northing": 175500.0, "gridsq": "X525Y175", "numresp": 175, "numpeople": 409.5, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 175000.0], [525000.0, 175000.0], [525000.0, 176000.0], [526000.0, 176000.0], [526000.0, 175000.0]]]}}, {"id": "732", "type": "Feature", "properties": {"easting": 526500.0, "northing": 175500.0, "gridsq": "X526Y175", "numresp": 171, "numpeople": 400.14, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 175000.0], [526000.0, 175000.0], [526000.0, 176000.0], [527000.0, 176000.0], [527000.0, 175000.0]]]}}, {"id": "733", "type": "Feature", "properties": {"easting": 527500.0, "northing": 175500.0, "gridsq": "X527Y175", "numresp": 442, "numpeople": 1034.28, "numkeys": 6, "numnonresp": 60, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 175000.0], [527000.0, 175000.0], [527000.0, 176000.0], [528000.0, 176000.0], [528000.0, 175000.0]]]}}, {"id": "734", "type": "Feature", "properties": {"easting": 528500.0, "northing": 175500.0, "gridsq": "X528Y175", "numresp": 242, "numpeople": 566.28, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 175000.0], [528000.0, 175000.0], [528000.0, 176000.0], [529000.0, 176000.0], [529000.0, 175000.0]]]}}, {"id": "735", "type": "Feature", "properties": {"easting": 529500.0, "northing": 175500.0, "gridsq": "X529Y175", "numresp": 421, "numpeople": 985.14, "numkeys": 3, "numnonresp": 69, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 175000.0], [529000.0, 175000.0], [529000.0, 176000.0], [530000.0, 176000.0], [530000.0, 175000.0]]]}}, {"id": "736", "type": "Feature", "properties": {"easting": 530500.0, "northing": 175500.0, "gridsq": "X530Y175", "numresp": 200, "numpeople": 468.0, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 175000.0], [530000.0, 175000.0], [530000.0, 176000.0], [531000.0, 176000.0], [531000.0, 175000.0]]]}}, {"id": "737", "type": "Feature", "properties": {"easting": 531500.0, "northing": 175500.0, "gridsq": "X531Y175", "numresp": 506, "numpeople": 1184.04, "numkeys": 3, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 175000.0], [531000.0, 175000.0], [531000.0, 176000.0], [532000.0, 176000.0], [532000.0, 175000.0]]]}}, {"id": "738", "type": "Feature", "properties": {"easting": 532500.0, "northing": 175500.0, "gridsq": "X532Y175", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 175000.0], [532000.0, 175000.0], [532000.0, 176000.0], [533000.0, 176000.0], [533000.0, 175000.0]]]}}, {"id": "739", "type": "Feature", "properties": {"easting": 533500.0, "northing": 175500.0, "gridsq": "X533Y175", "numresp": 635, "numpeople": 1485.9, "numkeys": 3, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 175000.0], [533000.0, 175000.0], [533000.0, 176000.0], [534000.0, 176000.0], [534000.0, 175000.0]]]}}, {"id": "740", "type": "Feature", "properties": {"easting": 534500.0, "northing": 175500.0, "gridsq": "X534Y175", "numresp": 132, "numpeople": 308.88, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 175000.0], [534000.0, 175000.0], [534000.0, 176000.0], [535000.0, 176000.0], [535000.0, 175000.0]]]}}, {"id": "741", "type": "Feature", "properties": {"easting": 535500.0, "northing": 175500.0, "gridsq": "X535Y175", "numresp": 112, "numpeople": 262.08, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 175000.0], [535000.0, 175000.0], [535000.0, 176000.0], [536000.0, 176000.0], [536000.0, 175000.0]]]}}, {"id": "742", "type": "Feature", "properties": {"easting": 536500.0, "northing": 175500.0, "gridsq": "X536Y175", "numresp": 181, "numpeople": 423.54, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 175000.0], [536000.0, 175000.0], [536000.0, 176000.0], [537000.0, 176000.0], [537000.0, 175000.0]]]}}, {"id": "743", "type": "Feature", "properties": {"easting": 537500.0, "northing": 175500.0, "gridsq": "X537Y175", "numresp": 248, "numpeople": 580.32, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 175000.0], [537000.0, 175000.0], [537000.0, 176000.0], [538000.0, 176000.0], [538000.0, 175000.0]]]}}, {"id": "744", "type": "Feature", "properties": {"easting": 538500.0, "northing": 175500.0, "gridsq": "X538Y175", "numresp": 277, "numpeople": 648.18, "numkeys": 2, "numnonresp": 97, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 175000.0], [538000.0, 175000.0], [538000.0, 176000.0], [539000.0, 176000.0], [539000.0, 175000.0]]]}}, {"id": "745", "type": "Feature", "properties": {"easting": 539500.0, "northing": 175500.0, "gridsq": "X539Y175", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 175000.0], [539000.0, 175000.0], [539000.0, 176000.0], [540000.0, 176000.0], [540000.0, 175000.0]]]}}, {"id": "746", "type": "Feature", "properties": {"easting": 541500.0, "northing": 175500.0, "gridsq": "X541Y175", "numresp": 170, "numpeople": 397.8, "numkeys": 6, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 175000.0], [541000.0, 175000.0], [541000.0, 176000.0], [542000.0, 176000.0], [542000.0, 175000.0]]]}}, {"id": "747", "type": "Feature", "properties": {"easting": 543500.0, "northing": 175500.0, "gridsq": "X543Y175", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 175000.0], [543000.0, 175000.0], [543000.0, 176000.0], [544000.0, 176000.0], [544000.0, 175000.0]]]}}, {"id": "748", "type": "Feature", "properties": {"easting": 546500.0, "northing": 175500.0, "gridsq": "X546Y175", "numresp": 197, "numpeople": 460.98, "numkeys": 2, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 175000.0], [546000.0, 175000.0], [546000.0, 176000.0], [547000.0, 176000.0], [547000.0, 175000.0]]]}}, {"id": "749", "type": "Feature", "properties": {"easting": 547500.0, "northing": 175500.0, "gridsq": "X547Y175", "numresp": 67, "numpeople": 156.78, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 175000.0], [547000.0, 175000.0], [547000.0, 176000.0], [548000.0, 176000.0], [548000.0, 175000.0]]]}}, {"id": "750", "type": "Feature", "properties": {"easting": 548500.0, "northing": 175500.0, "gridsq": "X548Y175", "numresp": 63, "numpeople": 147.42, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 175000.0], [548000.0, 175000.0], [548000.0, 176000.0], [549000.0, 176000.0], [549000.0, 175000.0]]]}}, {"id": "751", "type": "Feature", "properties": {"easting": 555500.0, "northing": 175500.0, "gridsq": "X555Y175", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[556000.0, 175000.0], [555000.0, 175000.0], [555000.0, 176000.0], [556000.0, 176000.0], [556000.0, 175000.0]]]}}, {"id": "752", "type": "Feature", "properties": {"easting": 346500.0, "northing": 176500.0, "gridsq": "X346Y176", "numresp": 55, "numpeople": 128.7, "numkeys": 0, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[347000.0, 176000.0], [346000.0, 176000.0], [346000.0, 177000.0], [347000.0, 177000.0], [347000.0, 176000.0]]]}}, {"id": "753", "type": "Feature", "properties": {"easting": 352500.0, "northing": 176500.0, "gridsq": "X352Y176", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[353000.0, 176000.0], [352000.0, 176000.0], [352000.0, 177000.0], [353000.0, 177000.0], [353000.0, 176000.0]]]}}, {"id": "754", "type": "Feature", "properties": {"easting": 365500.0, "northing": 176500.0, "gridsq": "X365Y176", "numresp": 120, "numpeople": 280.8, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[366000.0, 176000.0], [365000.0, 176000.0], [365000.0, 177000.0], [366000.0, 177000.0], [366000.0, 176000.0]]]}}, {"id": "755", "type": "Feature", "properties": {"easting": 493500.0, "northing": 176500.0, "gridsq": "X493Y176", "numresp": 73, "numpeople": 170.82, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[494000.0, 176000.0], [493000.0, 176000.0], [493000.0, 177000.0], [494000.0, 177000.0], [494000.0, 176000.0]]]}}, {"id": "756", "type": "Feature", "properties": {"easting": 494500.0, "northing": 176500.0, "gridsq": "X494Y176", "numresp": 162, "numpeople": 379.08, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[495000.0, 176000.0], [494000.0, 176000.0], [494000.0, 177000.0], [495000.0, 177000.0], [495000.0, 176000.0]]]}}, {"id": "757", "type": "Feature", "properties": {"easting": 495500.0, "northing": 176500.0, "gridsq": "X495Y176", "numresp": 161, "numpeople": 376.74, "numkeys": 4, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[496000.0, 176000.0], [495000.0, 176000.0], [495000.0, 177000.0], [496000.0, 177000.0], [496000.0, 176000.0]]]}}, {"id": "758", "type": "Feature", "properties": {"easting": 496500.0, "northing": 176500.0, "gridsq": "X496Y176", "numresp": 200, "numpeople": 468.0, "numkeys": 0, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 176000.0], [496000.0, 176000.0], [496000.0, 177000.0], [497000.0, 177000.0], [497000.0, 176000.0]]]}}, {"id": "759", "type": "Feature", "properties": {"easting": 512500.0, "northing": 176500.0, "gridsq": "X512Y176", "numresp": 89, "numpeople": 208.26, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 176000.0], [512000.0, 176000.0], [512000.0, 177000.0], [513000.0, 177000.0], [513000.0, 176000.0]]]}}, {"id": "760", "type": "Feature", "properties": {"easting": 513500.0, "northing": 176500.0, "gridsq": "X513Y176", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 176000.0], [513000.0, 176000.0], [513000.0, 177000.0], [514000.0, 177000.0], [514000.0, 176000.0]]]}}, {"id": "761", "type": "Feature", "properties": {"easting": 514500.0, "northing": 176500.0, "gridsq": "X514Y176", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 176000.0], [514000.0, 176000.0], [514000.0, 177000.0], [515000.0, 177000.0], [515000.0, 176000.0]]]}}, {"id": "762", "type": "Feature", "properties": {"easting": 515500.0, "northing": 176500.0, "gridsq": "X515Y176", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 64, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 176000.0], [515000.0, 176000.0], [515000.0, 177000.0], [516000.0, 177000.0], [516000.0, 176000.0]]]}}, {"id": "763", "type": "Feature", "properties": {"easting": 516500.0, "northing": 176500.0, "gridsq": "X516Y176", "numresp": 110, "numpeople": 257.4, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 176000.0], [516000.0, 176000.0], [516000.0, 177000.0], [517000.0, 177000.0], [517000.0, 176000.0]]]}}, {"id": "764", "type": "Feature", "properties": {"easting": 523500.0, "northing": 176500.0, "gridsq": "X523Y176", "numresp": 93, "numpeople": 217.62, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 176000.0], [523000.0, 176000.0], [523000.0, 177000.0], [524000.0, 177000.0], [524000.0, 176000.0]]]}}, {"id": "765", "type": "Feature", "properties": {"easting": 524500.0, "northing": 176500.0, "gridsq": "X524Y176", "numresp": 859, "numpeople": 2010.06, "numkeys": 3, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 176000.0], [524000.0, 176000.0], [524000.0, 177000.0], [525000.0, 177000.0], [525000.0, 176000.0]]]}}, {"id": "766", "type": "Feature", "properties": {"easting": 525500.0, "northing": 176500.0, "gridsq": "X525Y176", "numresp": 1368, "numpeople": 3201.12, "numkeys": 10, "numnonresp": 277, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 176000.0], [525000.0, 176000.0], [525000.0, 177000.0], [526000.0, 177000.0], [526000.0, 176000.0]]]}}, {"id": "767", "type": "Feature", "properties": {"easting": 526500.0, "northing": 176500.0, "gridsq": "X526Y176", "numresp": 420, "numpeople": 982.8, "numkeys": 2, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 176000.0], [526000.0, 176000.0], [526000.0, 177000.0], [527000.0, 177000.0], [527000.0, 176000.0]]]}}, {"id": "768", "type": "Feature", "properties": {"easting": 527500.0, "northing": 176500.0, "gridsq": "X527Y176", "numresp": 119, "numpeople": 278.46, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 176000.0], [527000.0, 176000.0], [527000.0, 177000.0], [528000.0, 177000.0], [528000.0, 176000.0]]]}}, {"id": "769", "type": "Feature", "properties": {"easting": 528500.0, "northing": 176500.0, "gridsq": "X528Y176", "numresp": 240, "numpeople": 561.6, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 176000.0], [528000.0, 176000.0], [528000.0, 177000.0], [529000.0, 177000.0], [529000.0, 176000.0]]]}}, {"id": "770", "type": "Feature", "properties": {"easting": 529500.0, "northing": 176500.0, "gridsq": "X529Y176", "numresp": 161, "numpeople": 376.74, "numkeys": 3, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 176000.0], [529000.0, 176000.0], [529000.0, 177000.0], [530000.0, 177000.0], [530000.0, 176000.0]]]}}, {"id": "771", "type": "Feature", "properties": {"easting": 530500.0, "northing": 176500.0, "gridsq": "X530Y176", "numresp": 116, "numpeople": 271.44, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 176000.0], [530000.0, 176000.0], [530000.0, 177000.0], [531000.0, 177000.0], [531000.0, 176000.0]]]}}, {"id": "772", "type": "Feature", "properties": {"easting": 531500.0, "northing": 176500.0, "gridsq": "X531Y176", "numresp": 232, "numpeople": 542.88, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 176000.0], [531000.0, 176000.0], [531000.0, 177000.0], [532000.0, 177000.0], [532000.0, 176000.0]]]}}, {"id": "773", "type": "Feature", "properties": {"easting": 532500.0, "northing": 176500.0, "gridsq": "X532Y176", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 176000.0], [532000.0, 176000.0], [532000.0, 177000.0], [533000.0, 177000.0], [533000.0, 176000.0]]]}}, {"id": "774", "type": "Feature", "properties": {"easting": 534500.0, "northing": 176500.0, "gridsq": "X534Y176", "numresp": 265, "numpeople": 620.1, "numkeys": 2, "numnonresp": 55, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 176000.0], [534000.0, 176000.0], [534000.0, 177000.0], [535000.0, 177000.0], [535000.0, 176000.0]]]}}, {"id": "775", "type": "Feature", "properties": {"easting": 535500.0, "northing": 176500.0, "gridsq": "X535Y176", "numresp": 168, "numpeople": 393.12, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 176000.0], [535000.0, 176000.0], [535000.0, 177000.0], [536000.0, 177000.0], [536000.0, 176000.0]]]}}, {"id": "776", "type": "Feature", "properties": {"easting": 536500.0, "northing": 176500.0, "gridsq": "X536Y176", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 176000.0], [536000.0, 176000.0], [536000.0, 177000.0], [537000.0, 177000.0], [537000.0, 176000.0]]]}}, {"id": "777", "type": "Feature", "properties": {"easting": 537500.0, "northing": 176500.0, "gridsq": "X537Y176", "numresp": 363, "numpeople": 849.42, "numkeys": 1, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 176000.0], [537000.0, 176000.0], [537000.0, 177000.0], [538000.0, 177000.0], [538000.0, 176000.0]]]}}, {"id": "778", "type": "Feature", "properties": {"easting": 547500.0, "northing": 176500.0, "gridsq": "X547Y176", "numresp": 265, "numpeople": 620.1, "numkeys": 5, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 176000.0], [547000.0, 176000.0], [547000.0, 177000.0], [548000.0, 177000.0], [548000.0, 176000.0]]]}}, {"id": "779", "type": "Feature", "properties": {"easting": 550500.0, "northing": 176500.0, "gridsq": "X550Y176", "numresp": 126, "numpeople": 294.84, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[551000.0, 176000.0], [550000.0, 176000.0], [550000.0, 177000.0], [551000.0, 177000.0], [551000.0, 176000.0]]]}}, {"id": "780", "type": "Feature", "properties": {"easting": 551500.0, "northing": 176500.0, "gridsq": "X551Y176", "numresp": 163, "numpeople": 381.42, "numkeys": 3, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 176000.0], [551000.0, 176000.0], [551000.0, 177000.0], [552000.0, 177000.0], [552000.0, 176000.0]]]}}, {"id": "781", "type": "Feature", "properties": {"easting": 552500.0, "northing": 176500.0, "gridsq": "X552Y176", "numresp": 170, "numpeople": 397.8, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[553000.0, 176000.0], [552000.0, 176000.0], [552000.0, 177000.0], [553000.0, 177000.0], [553000.0, 176000.0]]]}}, {"id": "782", "type": "Feature", "properties": {"easting": 557500.0, "northing": 176500.0, "gridsq": "X557Y176", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[558000.0, 176000.0], [557000.0, 176000.0], [557000.0, 177000.0], [558000.0, 177000.0], [558000.0, 176000.0]]]}}, {"id": "783", "type": "Feature", "properties": {"easting": 562500.0, "northing": 176500.0, "gridsq": "X562Y176", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 176000.0], [562000.0, 176000.0], [562000.0, 177000.0], [563000.0, 177000.0], [563000.0, 176000.0]]]}}, {"id": "784", "type": "Feature", "properties": {"easting": 563500.0, "northing": 176500.0, "gridsq": "X563Y176", "numresp": 153, "numpeople": 358.02, "numkeys": 3, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[564000.0, 176000.0], [563000.0, 176000.0], [563000.0, 177000.0], [564000.0, 177000.0], [564000.0, 176000.0]]]}}, {"id": "785", "type": "Feature", "properties": {"easting": 564500.0, "northing": 176500.0, "gridsq": "X564Y176", "numresp": 660, "numpeople": 1544.4, "numkeys": 6, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 176000.0], [564000.0, 176000.0], [564000.0, 177000.0], [565000.0, 177000.0], [565000.0, 176000.0]]]}}, {"id": "786", "type": "Feature", "properties": {"easting": 565500.0, "northing": 176500.0, "gridsq": "X565Y176", "numresp": 134, "numpeople": 313.56, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[566000.0, 176000.0], [565000.0, 176000.0], [565000.0, 177000.0], [566000.0, 177000.0], [566000.0, 176000.0]]]}}, {"id": "787", "type": "Feature", "properties": {"easting": 366500.0, "northing": 177500.0, "gridsq": "X366Y177", "numresp": 57, "numpeople": 133.38, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 177000.0], [366000.0, 177000.0], [366000.0, 178000.0], [367000.0, 178000.0], [367000.0, 177000.0]]]}}, {"id": "788", "type": "Feature", "properties": {"easting": 443500.0, "northing": 177500.0, "gridsq": "X443Y177", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[444000.0, 177000.0], [443000.0, 177000.0], [443000.0, 178000.0], [444000.0, 178000.0], [444000.0, 177000.0]]]}}, {"id": "789", "type": "Feature", "properties": {"easting": 516500.0, "northing": 177500.0, "gridsq": "X516Y177", "numresp": 37, "numpeople": 86.58, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 177000.0], [516000.0, 177000.0], [516000.0, 178000.0], [517000.0, 178000.0], [517000.0, 177000.0]]]}}, {"id": "790", "type": "Feature", "properties": {"easting": 517500.0, "northing": 177500.0, "gridsq": "X517Y177", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 177000.0], [517000.0, 177000.0], [517000.0, 178000.0], [518000.0, 178000.0], [518000.0, 177000.0]]]}}, {"id": "791", "type": "Feature", "properties": {"easting": 518500.0, "northing": 177500.0, "gridsq": "X518Y177", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 177000.0], [518000.0, 177000.0], [518000.0, 178000.0], [519000.0, 178000.0], [519000.0, 177000.0]]]}}, {"id": "792", "type": "Feature", "properties": {"easting": 523500.0, "northing": 177500.0, "gridsq": "X523Y177", "numresp": 812, "numpeople": 1900.08, "numkeys": 6, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 177000.0], [523000.0, 177000.0], [523000.0, 178000.0], [524000.0, 178000.0], [524000.0, 177000.0]]]}}, {"id": "793", "type": "Feature", "properties": {"easting": 524500.0, "northing": 177500.0, "gridsq": "X524Y177", "numresp": 1160, "numpeople": 2714.4, "numkeys": 6, "numnonresp": 82, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 177000.0], [524000.0, 177000.0], [524000.0, 178000.0], [525000.0, 178000.0], [525000.0, 177000.0]]]}}, {"id": "794", "type": "Feature", "properties": {"easting": 525500.0, "northing": 177500.0, "gridsq": "X525Y177", "numresp": 1792, "numpeople": 4193.28, "numkeys": 2, "numnonresp": 88, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 177000.0], [525000.0, 177000.0], [525000.0, 178000.0], [526000.0, 178000.0], [526000.0, 177000.0]]]}}, {"id": "795", "type": "Feature", "properties": {"easting": 526500.0, "northing": 177500.0, "gridsq": "X526Y177", "numresp": 1766, "numpeople": 4132.44, "numkeys": 7, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 177000.0], [526000.0, 177000.0], [526000.0, 178000.0], [527000.0, 178000.0], [527000.0, 177000.0]]]}}, {"id": "796", "type": "Feature", "properties": {"easting": 527500.0, "northing": 177500.0, "gridsq": "X527Y177", "numresp": 741, "numpeople": 1733.94, "numkeys": 3, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 177000.0], [527000.0, 177000.0], [527000.0, 178000.0], [528000.0, 178000.0], [528000.0, 177000.0]]]}}, {"id": "797", "type": "Feature", "properties": {"easting": 528500.0, "northing": 177500.0, "gridsq": "X528Y177", "numresp": 235, "numpeople": 549.9, "numkeys": 0, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 177000.0], [528000.0, 177000.0], [528000.0, 178000.0], [529000.0, 178000.0], [529000.0, 177000.0]]]}}, {"id": "798", "type": "Feature", "properties": {"easting": 529500.0, "northing": 177500.0, "gridsq": "X529Y177", "numresp": 106, "numpeople": 248.04, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 177000.0], [529000.0, 177000.0], [529000.0, 178000.0], [530000.0, 178000.0], [530000.0, 177000.0]]]}}, {"id": "799", "type": "Feature", "properties": {"easting": 530500.0, "northing": 177500.0, "gridsq": "X530Y177", "numresp": 366, "numpeople": 856.44, "numkeys": 4, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 177000.0], [530000.0, 177000.0], [530000.0, 178000.0], [531000.0, 178000.0], [531000.0, 177000.0]]]}}, {"id": "800", "type": "Feature", "properties": {"easting": 531500.0, "northing": 177500.0, "gridsq": "X531Y177", "numresp": 352, "numpeople": 823.68, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 177000.0], [531000.0, 177000.0], [531000.0, 178000.0], [532000.0, 178000.0], [532000.0, 177000.0]]]}}, {"id": "801", "type": "Feature", "properties": {"easting": 532500.0, "northing": 177500.0, "gridsq": "X532Y177", "numresp": 608, "numpeople": 1422.72, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 177000.0], [532000.0, 177000.0], [532000.0, 178000.0], [533000.0, 178000.0], [533000.0, 177000.0]]]}}, {"id": "802", "type": "Feature", "properties": {"easting": 533500.0, "northing": 177500.0, "gridsq": "X533Y177", "numresp": 751, "numpeople": 1757.34, "numkeys": 13, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 177000.0], [533000.0, 177000.0], [533000.0, 178000.0], [534000.0, 178000.0], [534000.0, 177000.0]]]}}, {"id": "803", "type": "Feature", "properties": {"easting": 534500.0, "northing": 177500.0, "gridsq": "X534Y177", "numresp": 383, "numpeople": 896.22, "numkeys": 5, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 177000.0], [534000.0, 177000.0], [534000.0, 178000.0], [535000.0, 178000.0], [535000.0, 177000.0]]]}}, {"id": "804", "type": "Feature", "properties": {"easting": 535500.0, "northing": 177500.0, "gridsq": "X535Y177", "numresp": 357, "numpeople": 835.38, "numkeys": 1, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 177000.0], [535000.0, 177000.0], [535000.0, 178000.0], [536000.0, 178000.0], [536000.0, 177000.0]]]}}, {"id": "805", "type": "Feature", "properties": {"easting": 536500.0, "northing": 177500.0, "gridsq": "X536Y177", "numresp": 358, "numpeople": 837.72, "numkeys": 2, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 177000.0], [536000.0, 177000.0], [536000.0, 178000.0], [537000.0, 178000.0], [537000.0, 177000.0]]]}}, {"id": "806", "type": "Feature", "properties": {"easting": 537500.0, "northing": 177500.0, "gridsq": "X537Y177", "numresp": 104, "numpeople": 243.36, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 177000.0], [537000.0, 177000.0], [537000.0, 178000.0], [538000.0, 178000.0], [538000.0, 177000.0]]]}}, {"id": "807", "type": "Feature", "properties": {"easting": 538500.0, "northing": 177500.0, "gridsq": "X538Y177", "numresp": 70, "numpeople": 163.8, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 177000.0], [538000.0, 177000.0], [538000.0, 178000.0], [539000.0, 178000.0], [539000.0, 177000.0]]]}}, {"id": "808", "type": "Feature", "properties": {"easting": 539500.0, "northing": 177500.0, "gridsq": "X539Y177", "numresp": 114, "numpeople": 266.76, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 177000.0], [539000.0, 177000.0], [539000.0, 178000.0], [540000.0, 178000.0], [540000.0, 177000.0]]]}}, {"id": "809", "type": "Feature", "properties": {"easting": 540500.0, "northing": 177500.0, "gridsq": "X540Y177", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 177000.0], [540000.0, 177000.0], [540000.0, 178000.0], [541000.0, 178000.0], [541000.0, 177000.0]]]}}, {"id": "810", "type": "Feature", "properties": {"easting": 541500.0, "northing": 177500.0, "gridsq": "X541Y177", "numresp": 95, "numpeople": 222.3, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 177000.0], [541000.0, 177000.0], [541000.0, 178000.0], [542000.0, 178000.0], [542000.0, 177000.0]]]}}, {"id": "811", "type": "Feature", "properties": {"easting": 543500.0, "northing": 177500.0, "gridsq": "X543Y177", "numresp": 161, "numpeople": 376.74, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 177000.0], [543000.0, 177000.0], [543000.0, 178000.0], [544000.0, 178000.0], [544000.0, 177000.0]]]}}, {"id": "812", "type": "Feature", "properties": {"easting": 544500.0, "northing": 177500.0, "gridsq": "X544Y177", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 177000.0], [544000.0, 177000.0], [544000.0, 178000.0], [545000.0, 178000.0], [545000.0, 177000.0]]]}}, {"id": "813", "type": "Feature", "properties": {"easting": 546500.0, "northing": 177500.0, "gridsq": "X546Y177", "numresp": 96, "numpeople": 224.64, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 177000.0], [546000.0, 177000.0], [546000.0, 178000.0], [547000.0, 178000.0], [547000.0, 177000.0]]]}}, {"id": "814", "type": "Feature", "properties": {"easting": 548500.0, "northing": 177500.0, "gridsq": "X548Y177", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 177000.0], [548000.0, 177000.0], [548000.0, 178000.0], [549000.0, 178000.0], [549000.0, 177000.0]]]}}, {"id": "815", "type": "Feature", "properties": {"easting": 551500.0, "northing": 177500.0, "gridsq": "X551Y177", "numresp": 106, "numpeople": 248.04, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 177000.0], [551000.0, 177000.0], [551000.0, 178000.0], [552000.0, 178000.0], [552000.0, 177000.0]]]}}, {"id": "816", "type": "Feature", "properties": {"easting": 555500.0, "northing": 177500.0, "gridsq": "X555Y177", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[556000.0, 177000.0], [555000.0, 177000.0], [555000.0, 178000.0], [556000.0, 178000.0], [556000.0, 177000.0]]]}}, {"id": "817", "type": "Feature", "properties": {"easting": 556500.0, "northing": 177500.0, "gridsq": "X556Y177", "numresp": 76, "numpeople": 177.84, "numkeys": 5, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[557000.0, 177000.0], [556000.0, 177000.0], [556000.0, 178000.0], [557000.0, 178000.0], [557000.0, 177000.0]]]}}, {"id": "818", "type": "Feature", "properties": {"easting": 557500.0, "northing": 177500.0, "gridsq": "X557Y177", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[558000.0, 177000.0], [557000.0, 177000.0], [557000.0, 178000.0], [558000.0, 178000.0], [558000.0, 177000.0]]]}}, {"id": "819", "type": "Feature", "properties": {"easting": 558500.0, "northing": 177500.0, "gridsq": "X558Y177", "numresp": 120, "numpeople": 280.8, "numkeys": 3, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 177000.0], [558000.0, 177000.0], [558000.0, 178000.0], [559000.0, 178000.0], [559000.0, 177000.0]]]}}, {"id": "820", "type": "Feature", "properties": {"easting": 559500.0, "northing": 177500.0, "gridsq": "X559Y177", "numresp": 354, "numpeople": 828.36, "numkeys": 5, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 177000.0], [559000.0, 177000.0], [559000.0, 178000.0], [560000.0, 178000.0], [560000.0, 177000.0]]]}}, {"id": "821", "type": "Feature", "properties": {"easting": 560500.0, "northing": 177500.0, "gridsq": "X560Y177", "numresp": 222, "numpeople": 519.48, "numkeys": 4, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[561000.0, 177000.0], [560000.0, 177000.0], [560000.0, 178000.0], [561000.0, 178000.0], [561000.0, 177000.0]]]}}, {"id": "822", "type": "Feature", "properties": {"easting": 561500.0, "northing": 177500.0, "gridsq": "X561Y177", "numresp": 600, "numpeople": 1404.0, "numkeys": 6, "numnonresp": 120, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[562000.0, 177000.0], [561000.0, 177000.0], [561000.0, 178000.0], [562000.0, 178000.0], [562000.0, 177000.0]]]}}, {"id": "823", "type": "Feature", "properties": {"easting": 562500.0, "northing": 177500.0, "gridsq": "X562Y177", "numresp": 230, "numpeople": 538.2, "numkeys": 7, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 177000.0], [562000.0, 177000.0], [562000.0, 178000.0], [563000.0, 178000.0], [563000.0, 177000.0]]]}}, {"id": "824", "type": "Feature", "properties": {"easting": 564500.0, "northing": 177500.0, "gridsq": "X564Y177", "numresp": 105, "numpeople": 245.7, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 177000.0], [564000.0, 177000.0], [564000.0, 178000.0], [565000.0, 178000.0], [565000.0, 177000.0]]]}}, {"id": "825", "type": "Feature", "properties": {"easting": 359500.0, "northing": 178500.0, "gridsq": "X359Y178", "numresp": 93, "numpeople": 217.62, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[360000.0, 178000.0], [359000.0, 178000.0], [359000.0, 179000.0], [360000.0, 179000.0], [360000.0, 178000.0]]]}}, {"id": "826", "type": "Feature", "properties": {"easting": 486500.0, "northing": 178500.0, "gridsq": "X486Y178", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 178000.0], [486000.0, 178000.0], [486000.0, 179000.0], [487000.0, 179000.0], [487000.0, 178000.0]]]}}, {"id": "827", "type": "Feature", "properties": {"easting": 509500.0, "northing": 178500.0, "gridsq": "X509Y178", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[510000.0, 178000.0], [509000.0, 178000.0], [509000.0, 179000.0], [510000.0, 179000.0], [510000.0, 178000.0]]]}}, {"id": "828", "type": "Feature", "properties": {"easting": 517500.0, "northing": 178500.0, "gridsq": "X517Y178", "numresp": 208, "numpeople": 486.72, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 178000.0], [517000.0, 178000.0], [517000.0, 179000.0], [518000.0, 179000.0], [518000.0, 178000.0]]]}}, {"id": "829", "type": "Feature", "properties": {"easting": 518500.0, "northing": 178500.0, "gridsq": "X518Y178", "numresp": 37, "numpeople": 86.58, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 178000.0], [518000.0, 178000.0], [518000.0, 179000.0], [519000.0, 179000.0], [519000.0, 178000.0]]]}}, {"id": "830", "type": "Feature", "properties": {"easting": 521500.0, "northing": 178500.0, "gridsq": "X521Y178", "numresp": 145, "numpeople": 339.3, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 178000.0], [521000.0, 178000.0], [521000.0, 179000.0], [522000.0, 179000.0], [522000.0, 178000.0]]]}}, {"id": "831", "type": "Feature", "properties": {"easting": 522500.0, "northing": 178500.0, "gridsq": "X522Y178", "numresp": 870, "numpeople": 2035.8, "numkeys": 9, "numnonresp": 92, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 178000.0], [522000.0, 178000.0], [522000.0, 179000.0], [523000.0, 179000.0], [523000.0, 178000.0]]]}}, {"id": "832", "type": "Feature", "properties": {"easting": 523500.0, "northing": 178500.0, "gridsq": "X523Y178", "numresp": 1072, "numpeople": 2508.48, "numkeys": 11, "numnonresp": 79, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 178000.0], [523000.0, 178000.0], [523000.0, 179000.0], [524000.0, 179000.0], [524000.0, 178000.0]]]}}, {"id": "833", "type": "Feature", "properties": {"easting": 524500.0, "northing": 178500.0, "gridsq": "X524Y178", "numresp": 2388, "numpeople": 5587.92, "numkeys": 10, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 178000.0], [524000.0, 178000.0], [524000.0, 179000.0], [525000.0, 179000.0], [525000.0, 178000.0]]]}}, {"id": "834", "type": "Feature", "properties": {"easting": 525500.0, "northing": 178500.0, "gridsq": "X525Y178", "numresp": 4254, "numpeople": 9954.36, "numkeys": 10, "numnonresp": 95, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 178000.0], [525000.0, 178000.0], [525000.0, 179000.0], [526000.0, 179000.0], [526000.0, 178000.0]]]}}, {"id": "835", "type": "Feature", "properties": {"easting": 526500.0, "northing": 178500.0, "gridsq": "X526Y178", "numresp": 2790, "numpeople": 6528.6, "numkeys": 11, "numnonresp": 83, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 178000.0], [526000.0, 178000.0], [526000.0, 179000.0], [527000.0, 179000.0], [527000.0, 178000.0]]]}}, {"id": "836", "type": "Feature", "properties": {"easting": 527500.0, "northing": 178500.0, "gridsq": "X527Y178", "numresp": 2150, "numpeople": 5031.0, "numkeys": 9, "numnonresp": 79, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 178000.0], [527000.0, 178000.0], [527000.0, 179000.0], [528000.0, 179000.0], [528000.0, 178000.0]]]}}, {"id": "837", "type": "Feature", "properties": {"easting": 528500.0, "northing": 178500.0, "gridsq": "X528Y178", "numresp": 960, "numpeople": 2246.4, "numkeys": 13, "numnonresp": 212, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 178000.0], [528000.0, 178000.0], [528000.0, 179000.0], [529000.0, 179000.0], [529000.0, 178000.0]]]}}, {"id": "838", "type": "Feature", "properties": {"easting": 529500.0, "northing": 178500.0, "gridsq": "X529Y178", "numresp": 1156, "numpeople": 2705.04, "numkeys": 1, "numnonresp": 111, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 178000.0], [529000.0, 178000.0], [529000.0, 179000.0], [530000.0, 179000.0], [530000.0, 178000.0]]]}}, {"id": "839", "type": "Feature", "properties": {"easting": 531500.0, "northing": 178500.0, "gridsq": "X531Y178", "numresp": 253, "numpeople": 592.02, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 178000.0], [531000.0, 178000.0], [531000.0, 179000.0], [532000.0, 179000.0], [532000.0, 178000.0]]]}}, {"id": "840", "type": "Feature", "properties": {"easting": 533500.0, "northing": 178500.0, "gridsq": "X533Y178", "numresp": 153, "numpeople": 358.02, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 178000.0], [533000.0, 178000.0], [533000.0, 179000.0], [534000.0, 179000.0], [534000.0, 178000.0]]]}}, {"id": "841", "type": "Feature", "properties": {"easting": 534500.0, "northing": 178500.0, "gridsq": "X534Y178", "numresp": 93, "numpeople": 217.62, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 178000.0], [534000.0, 178000.0], [534000.0, 179000.0], [535000.0, 179000.0], [535000.0, 178000.0]]]}}, {"id": "842", "type": "Feature", "properties": {"easting": 539500.0, "northing": 178500.0, "gridsq": "X539Y178", "numresp": 91, "numpeople": 212.94, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 178000.0], [539000.0, 178000.0], [539000.0, 179000.0], [540000.0, 179000.0], [540000.0, 178000.0]]]}}, {"id": "843", "type": "Feature", "properties": {"easting": 540500.0, "northing": 178500.0, "gridsq": "X540Y178", "numresp": 42, "numpeople": 98.28, "numkeys": 4, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 178000.0], [540000.0, 178000.0], [540000.0, 179000.0], [541000.0, 179000.0], [541000.0, 178000.0]]]}}, {"id": "844", "type": "Feature", "properties": {"easting": 541500.0, "northing": 178500.0, "gridsq": "X541Y178", "numresp": 229, "numpeople": 535.86, "numkeys": 10, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 178000.0], [541000.0, 178000.0], [541000.0, 179000.0], [542000.0, 179000.0], [542000.0, 178000.0]]]}}, {"id": "845", "type": "Feature", "properties": {"easting": 542500.0, "northing": 178500.0, "gridsq": "X542Y178", "numresp": 53, "numpeople": 124.02, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 178000.0], [542000.0, 178000.0], [542000.0, 179000.0], [543000.0, 179000.0], [543000.0, 178000.0]]]}}, {"id": "846", "type": "Feature", "properties": {"easting": 543500.0, "northing": 178500.0, "gridsq": "X543Y178", "numresp": 259, "numpeople": 606.06, "numkeys": 3, "numnonresp": 60, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 178000.0], [543000.0, 178000.0], [543000.0, 179000.0], [544000.0, 179000.0], [544000.0, 178000.0]]]}}, {"id": "847", "type": "Feature", "properties": {"easting": 544500.0, "northing": 178500.0, "gridsq": "X544Y178", "numresp": 184, "numpeople": 430.56, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 178000.0], [544000.0, 178000.0], [544000.0, 179000.0], [545000.0, 179000.0], [545000.0, 178000.0]]]}}, {"id": "848", "type": "Feature", "properties": {"easting": 545500.0, "northing": 178500.0, "gridsq": "X545Y178", "numresp": 245, "numpeople": 573.3, "numkeys": 4, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 178000.0], [545000.0, 178000.0], [545000.0, 179000.0], [546000.0, 179000.0], [546000.0, 178000.0]]]}}, {"id": "849", "type": "Feature", "properties": {"easting": 550500.0, "northing": 178500.0, "gridsq": "X550Y178", "numresp": 165, "numpeople": 386.1, "numkeys": 2, "numnonresp": 68, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[551000.0, 178000.0], [550000.0, 178000.0], [550000.0, 179000.0], [551000.0, 179000.0], [551000.0, 178000.0]]]}}, {"id": "850", "type": "Feature", "properties": {"easting": 554500.0, "northing": 178500.0, "gridsq": "X554Y178", "numresp": 159, "numpeople": 372.06, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[555000.0, 178000.0], [554000.0, 178000.0], [554000.0, 179000.0], [555000.0, 179000.0], [555000.0, 178000.0]]]}}, {"id": "851", "type": "Feature", "properties": {"easting": 555500.0, "northing": 178500.0, "gridsq": "X555Y178", "numresp": 473, "numpeople": 1106.82, "numkeys": 4, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[556000.0, 178000.0], [555000.0, 178000.0], [555000.0, 179000.0], [556000.0, 179000.0], [556000.0, 178000.0]]]}}, {"id": "852", "type": "Feature", "properties": {"easting": 556500.0, "northing": 178500.0, "gridsq": "X556Y178", "numresp": 117, "numpeople": 273.78, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[557000.0, 178000.0], [556000.0, 178000.0], [556000.0, 179000.0], [557000.0, 179000.0], [557000.0, 178000.0]]]}}, {"id": "853", "type": "Feature", "properties": {"easting": 557500.0, "northing": 178500.0, "gridsq": "X557Y178", "numresp": 0, "numpeople": 0.0, "numkeys": 6, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[558000.0, 178000.0], [557000.0, 178000.0], [557000.0, 179000.0], [558000.0, 179000.0], [558000.0, 178000.0]]]}}, {"id": "854", "type": "Feature", "properties": {"easting": 558500.0, "northing": 178500.0, "gridsq": "X558Y178", "numresp": 16, "numpeople": 37.44, "numkeys": 10, "numnonresp": 180, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 178000.0], [558000.0, 178000.0], [558000.0, 179000.0], [559000.0, 179000.0], [559000.0, 178000.0]]]}}, {"id": "855", "type": "Feature", "properties": {"easting": 559500.0, "northing": 178500.0, "gridsq": "X559Y178", "numresp": 323, "numpeople": 755.82, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 178000.0], [559000.0, 178000.0], [559000.0, 179000.0], [560000.0, 179000.0], [560000.0, 178000.0]]]}}, {"id": "856", "type": "Feature", "properties": {"easting": 560500.0, "northing": 178500.0, "gridsq": "X560Y178", "numresp": 113, "numpeople": 264.42, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[561000.0, 178000.0], [560000.0, 178000.0], [560000.0, 179000.0], [561000.0, 179000.0], [561000.0, 178000.0]]]}}, {"id": "857", "type": "Feature", "properties": {"easting": 561500.0, "northing": 178500.0, "gridsq": "X561Y178", "numresp": 446, "numpeople": 1043.64, "numkeys": 12, "numnonresp": 113, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[562000.0, 178000.0], [561000.0, 178000.0], [561000.0, 179000.0], [562000.0, 179000.0], [562000.0, 178000.0]]]}}, {"id": "858", "type": "Feature", "properties": {"easting": 562500.0, "northing": 178500.0, "gridsq": "X562Y178", "numresp": 383, "numpeople": 896.22, "numkeys": 1, "numnonresp": 55, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 178000.0], [562000.0, 178000.0], [562000.0, 179000.0], [563000.0, 179000.0], [563000.0, 178000.0]]]}}, {"id": "859", "type": "Feature", "properties": {"easting": 563500.0, "northing": 178500.0, "gridsq": "X563Y178", "numresp": 33, "numpeople": 77.22, "numkeys": 5, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[564000.0, 178000.0], [563000.0, 178000.0], [563000.0, 179000.0], [564000.0, 179000.0], [564000.0, 178000.0]]]}}, {"id": "860", "type": "Feature", "properties": {"easting": 564500.0, "northing": 178500.0, "gridsq": "X564Y178", "numresp": 228, "numpeople": 533.52, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 178000.0], [564000.0, 178000.0], [564000.0, 179000.0], [565000.0, 179000.0], [565000.0, 178000.0]]]}}, {"id": "861", "type": "Feature", "properties": {"easting": 567500.0, "northing": 178500.0, "gridsq": "X567Y178", "numresp": 18, "numpeople": 42.12, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[568000.0, 178000.0], [567000.0, 178000.0], [567000.0, 179000.0], [568000.0, 179000.0], [568000.0, 178000.0]]]}}, {"id": "862", "type": "Feature", "properties": {"easting": 487500.0, "northing": 179500.0, "gridsq": "X487Y179", "numresp": 92, "numpeople": 215.28, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 179000.0], [487000.0, 179000.0], [487000.0, 180000.0], [488000.0, 180000.0], [488000.0, 179000.0]]]}}, {"id": "863", "type": "Feature", "properties": {"easting": 496500.0, "northing": 179500.0, "gridsq": "X496Y179", "numresp": 125, "numpeople": 292.5, "numkeys": 3, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 179000.0], [496000.0, 179000.0], [496000.0, 180000.0], [497000.0, 180000.0], [497000.0, 179000.0]]]}}, {"id": "864", "type": "Feature", "properties": {"easting": 508500.0, "northing": 179500.0, "gridsq": "X508Y179", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 179000.0], [508000.0, 179000.0], [508000.0, 180000.0], [509000.0, 180000.0], [509000.0, 179000.0]]]}}, {"id": "865", "type": "Feature", "properties": {"easting": 517500.0, "northing": 179500.0, "gridsq": "X517Y179", "numresp": 224, "numpeople": 524.16, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 179000.0], [517000.0, 179000.0], [517000.0, 180000.0], [518000.0, 180000.0], [518000.0, 179000.0]]]}}, {"id": "866", "type": "Feature", "properties": {"easting": 520500.0, "northing": 179500.0, "gridsq": "X520Y179", "numresp": 175, "numpeople": 409.5, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 179000.0], [520000.0, 179000.0], [520000.0, 180000.0], [521000.0, 180000.0], [521000.0, 179000.0]]]}}, {"id": "867", "type": "Feature", "properties": {"easting": 521500.0, "northing": 179500.0, "gridsq": "X521Y179", "numresp": 630, "numpeople": 1474.2, "numkeys": 1, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 179000.0], [521000.0, 179000.0], [521000.0, 180000.0], [522000.0, 180000.0], [522000.0, 179000.0]]]}}, {"id": "868", "type": "Feature", "properties": {"easting": 522500.0, "northing": 179500.0, "gridsq": "X522Y179", "numresp": 2164, "numpeople": 5063.76, "numkeys": 11, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 179000.0], [522000.0, 179000.0], [522000.0, 180000.0], [523000.0, 180000.0], [523000.0, 179000.0]]]}}, {"id": "869", "type": "Feature", "properties": {"easting": 523500.0, "northing": 179500.0, "gridsq": "X523Y179", "numresp": 2809, "numpeople": 6573.06, "numkeys": 12, "numnonresp": 129, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 179000.0], [523000.0, 179000.0], [523000.0, 180000.0], [524000.0, 180000.0], [524000.0, 179000.0]]]}}, {"id": "870", "type": "Feature", "properties": {"easting": 524500.0, "northing": 179500.0, "gridsq": "X524Y179", "numresp": 2263, "numpeople": 5295.42, "numkeys": 12, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 179000.0], [524000.0, 179000.0], [524000.0, 180000.0], [525000.0, 180000.0], [525000.0, 179000.0]]]}}, {"id": "871", "type": "Feature", "properties": {"easting": 525500.0, "northing": 179500.0, "gridsq": "X525Y179", "numresp": 1671, "numpeople": 3910.14, "numkeys": 4, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 179000.0], [525000.0, 179000.0], [525000.0, 180000.0], [526000.0, 180000.0], [526000.0, 179000.0]]]}}, {"id": "872", "type": "Feature", "properties": {"easting": 526500.0, "northing": 179500.0, "gridsq": "X526Y179", "numresp": 1163, "numpeople": 2721.42, "numkeys": 6, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 179000.0], [526000.0, 179000.0], [526000.0, 180000.0], [527000.0, 180000.0], [527000.0, 179000.0]]]}}, {"id": "873", "type": "Feature", "properties": {"easting": 527500.0, "northing": 179500.0, "gridsq": "X527Y179", "numresp": 1132, "numpeople": 2648.88, "numkeys": 3, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 179000.0], [527000.0, 179000.0], [527000.0, 180000.0], [528000.0, 180000.0], [528000.0, 179000.0]]]}}, {"id": "874", "type": "Feature", "properties": {"easting": 528500.0, "northing": 179500.0, "gridsq": "X528Y179", "numresp": 314, "numpeople": 734.76, "numkeys": 2, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 179000.0], [528000.0, 179000.0], [528000.0, 180000.0], [529000.0, 180000.0], [529000.0, 179000.0]]]}}, {"id": "875", "type": "Feature", "properties": {"easting": 529500.0, "northing": 179500.0, "gridsq": "X529Y179", "numresp": 402, "numpeople": 940.68, "numkeys": 8, "numnonresp": 120, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 179000.0], [529000.0, 179000.0], [529000.0, 180000.0], [530000.0, 180000.0], [530000.0, 179000.0]]]}}, {"id": "876", "type": "Feature", "properties": {"easting": 531500.0, "northing": 179500.0, "gridsq": "X531Y179", "numresp": 149, "numpeople": 348.66, "numkeys": 2, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 179000.0], [531000.0, 179000.0], [531000.0, 180000.0], [532000.0, 180000.0], [532000.0, 179000.0]]]}}, {"id": "877", "type": "Feature", "properties": {"easting": 532500.0, "northing": 179500.0, "gridsq": "X532Y179", "numresp": 85, "numpeople": 198.9, "numkeys": 1, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 179000.0], [532000.0, 179000.0], [532000.0, 180000.0], [533000.0, 180000.0], [533000.0, 179000.0]]]}}, {"id": "878", "type": "Feature", "properties": {"easting": 533500.0, "northing": 179500.0, "gridsq": "X533Y179", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 179000.0], [533000.0, 179000.0], [533000.0, 180000.0], [534000.0, 180000.0], [534000.0, 179000.0]]]}}, {"id": "879", "type": "Feature", "properties": {"easting": 537500.0, "northing": 179500.0, "gridsq": "X537Y179", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 179000.0], [537000.0, 179000.0], [537000.0, 180000.0], [538000.0, 180000.0], [538000.0, 179000.0]]]}}, {"id": "880", "type": "Feature", "properties": {"easting": 540500.0, "northing": 179500.0, "gridsq": "X540Y179", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 179000.0], [540000.0, 179000.0], [540000.0, 180000.0], [541000.0, 180000.0], [541000.0, 179000.0]]]}}, {"id": "881", "type": "Feature", "properties": {"easting": 541500.0, "northing": 179500.0, "gridsq": "X541Y179", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 179000.0], [541000.0, 179000.0], [541000.0, 180000.0], [542000.0, 180000.0], [542000.0, 179000.0]]]}}, {"id": "882", "type": "Feature", "properties": {"easting": 544500.0, "northing": 179500.0, "gridsq": "X544Y179", "numresp": 6, "numpeople": 14.04, "numkeys": 0, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 179000.0], [544000.0, 179000.0], [544000.0, 180000.0], [545000.0, 180000.0], [545000.0, 179000.0]]]}}, {"id": "883", "type": "Feature", "properties": {"easting": 545500.0, "northing": 179500.0, "gridsq": "X545Y179", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 179000.0], [545000.0, 179000.0], [545000.0, 180000.0], [546000.0, 180000.0], [546000.0, 179000.0]]]}}, {"id": "884", "type": "Feature", "properties": {"easting": 548500.0, "northing": 179500.0, "gridsq": "X548Y179", "numresp": 130, "numpeople": 304.2, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 179000.0], [548000.0, 179000.0], [548000.0, 180000.0], [549000.0, 180000.0], [549000.0, 179000.0]]]}}, {"id": "885", "type": "Feature", "properties": {"easting": 549500.0, "northing": 179500.0, "gridsq": "X549Y179", "numresp": 43, "numpeople": 100.62, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 179000.0], [549000.0, 179000.0], [549000.0, 180000.0], [550000.0, 180000.0], [550000.0, 179000.0]]]}}, {"id": "886", "type": "Feature", "properties": {"easting": 555500.0, "northing": 179500.0, "gridsq": "X555Y179", "numresp": 17, "numpeople": 39.78, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[556000.0, 179000.0], [555000.0, 179000.0], [555000.0, 180000.0], [556000.0, 180000.0], [556000.0, 179000.0]]]}}, {"id": "887", "type": "Feature", "properties": {"easting": 557500.0, "northing": 179500.0, "gridsq": "X557Y179", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[558000.0, 179000.0], [557000.0, 179000.0], [557000.0, 180000.0], [558000.0, 180000.0], [558000.0, 179000.0]]]}}, {"id": "888", "type": "Feature", "properties": {"easting": 558500.0, "northing": 179500.0, "gridsq": "X558Y179", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 108, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 179000.0], [558000.0, 179000.0], [558000.0, 180000.0], [559000.0, 180000.0], [559000.0, 179000.0]]]}}, {"id": "889", "type": "Feature", "properties": {"easting": 559500.0, "northing": 179500.0, "gridsq": "X559Y179", "numresp": 160, "numpeople": 374.4, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 179000.0], [559000.0, 179000.0], [559000.0, 180000.0], [560000.0, 180000.0], [560000.0, 179000.0]]]}}, {"id": "890", "type": "Feature", "properties": {"easting": 560500.0, "northing": 179500.0, "gridsq": "X560Y179", "numresp": 212, "numpeople": 496.08, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[561000.0, 179000.0], [560000.0, 179000.0], [560000.0, 180000.0], [561000.0, 180000.0], [561000.0, 179000.0]]]}}, {"id": "891", "type": "Feature", "properties": {"easting": 561500.0, "northing": 179500.0, "gridsq": "X561Y179", "numresp": 289, "numpeople": 676.26, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[562000.0, 179000.0], [561000.0, 179000.0], [561000.0, 180000.0], [562000.0, 180000.0], [562000.0, 179000.0]]]}}, {"id": "892", "type": "Feature", "properties": {"easting": 562500.0, "northing": 179500.0, "gridsq": "X562Y179", "numresp": 267, "numpeople": 624.78, "numkeys": 4, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 179000.0], [562000.0, 179000.0], [562000.0, 180000.0], [563000.0, 180000.0], [563000.0, 179000.0]]]}}, {"id": "893", "type": "Feature", "properties": {"easting": 564500.0, "northing": 179500.0, "gridsq": "X564Y179", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 179000.0], [564000.0, 179000.0], [564000.0, 180000.0], [565000.0, 180000.0], [565000.0, 179000.0]]]}}, {"id": "894", "type": "Feature", "properties": {"easting": 567500.0, "northing": 179500.0, "gridsq": "X567Y179", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[568000.0, 179000.0], [567000.0, 179000.0], [567000.0, 180000.0], [568000.0, 180000.0], [568000.0, 179000.0]]]}}, {"id": "895", "type": "Feature", "properties": {"easting": 370500.0, "northing": 180500.0, "gridsq": "X370Y180", "numresp": 74, "numpeople": 173.16, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[371000.0, 180000.0], [370000.0, 180000.0], [370000.0, 181000.0], [371000.0, 181000.0], [371000.0, 180000.0]]]}}, {"id": "896", "type": "Feature", "properties": {"easting": 487500.0, "northing": 180500.0, "gridsq": "X487Y180", "numresp": 132, "numpeople": 308.88, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 180000.0], [487000.0, 180000.0], [487000.0, 181000.0], [488000.0, 181000.0], [488000.0, 180000.0]]]}}, {"id": "897", "type": "Feature", "properties": {"easting": 488500.0, "northing": 180500.0, "gridsq": "X488Y180", "numresp": 53, "numpeople": 124.02, "numkeys": 3, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 180000.0], [488000.0, 180000.0], [488000.0, 181000.0], [489000.0, 181000.0], [489000.0, 180000.0]]]}}, {"id": "898", "type": "Feature", "properties": {"easting": 494500.0, "northing": 180500.0, "gridsq": "X494Y180", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[495000.0, 180000.0], [494000.0, 180000.0], [494000.0, 181000.0], [495000.0, 181000.0], [495000.0, 180000.0]]]}}, {"id": "899", "type": "Feature", "properties": {"easting": 498500.0, "northing": 180500.0, "gridsq": "X498Y180", "numresp": 226, "numpeople": 528.84, "numkeys": 3, "numnonresp": 52, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 180000.0], [498000.0, 180000.0], [498000.0, 181000.0], [499000.0, 181000.0], [499000.0, 180000.0]]]}}, {"id": "900", "type": "Feature", "properties": {"easting": 499500.0, "northing": 180500.0, "gridsq": "X499Y180", "numresp": 462, "numpeople": 1081.08, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 180000.0], [499000.0, 180000.0], [499000.0, 181000.0], [500000.0, 181000.0], [500000.0, 180000.0]]]}}, {"id": "901", "type": "Feature", "properties": {"easting": 506500.0, "northing": 180500.0, "gridsq": "X506Y180", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 180000.0], [506000.0, 180000.0], [506000.0, 181000.0], [507000.0, 181000.0], [507000.0, 180000.0]]]}}, {"id": "902", "type": "Feature", "properties": {"easting": 510500.0, "northing": 180500.0, "gridsq": "X510Y180", "numresp": 154, "numpeople": 360.36, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 180000.0], [510000.0, 180000.0], [510000.0, 181000.0], [511000.0, 181000.0], [511000.0, 180000.0]]]}}, {"id": "903", "type": "Feature", "properties": {"easting": 511500.0, "northing": 180500.0, "gridsq": "X511Y180", "numresp": 21, "numpeople": 49.14, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 180000.0], [511000.0, 180000.0], [511000.0, 181000.0], [512000.0, 181000.0], [512000.0, 180000.0]]]}}, {"id": "904", "type": "Feature", "properties": {"easting": 516500.0, "northing": 180500.0, "gridsq": "X516Y180", "numresp": 236, "numpeople": 552.24, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 180000.0], [516000.0, 180000.0], [516000.0, 181000.0], [517000.0, 181000.0], [517000.0, 180000.0]]]}}, {"id": "905", "type": "Feature", "properties": {"easting": 517500.0, "northing": 180500.0, "gridsq": "X517Y180", "numresp": 160, "numpeople": 374.4, "numkeys": 1, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 180000.0], [517000.0, 180000.0], [517000.0, 181000.0], [518000.0, 181000.0], [518000.0, 180000.0]]]}}, {"id": "906", "type": "Feature", "properties": {"easting": 519500.0, "northing": 180500.0, "gridsq": "X519Y180", "numresp": 255, "numpeople": 596.7, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 180000.0], [519000.0, 180000.0], [519000.0, 181000.0], [520000.0, 181000.0], [520000.0, 180000.0]]]}}, {"id": "907", "type": "Feature", "properties": {"easting": 520500.0, "northing": 180500.0, "gridsq": "X520Y180", "numresp": 206, "numpeople": 482.04, "numkeys": 0, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 180000.0], [520000.0, 180000.0], [520000.0, 181000.0], [521000.0, 181000.0], [521000.0, 180000.0]]]}}, {"id": "908", "type": "Feature", "properties": {"easting": 521500.0, "northing": 180500.0, "gridsq": "X521Y180", "numresp": 656, "numpeople": 1535.04, "numkeys": 1, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 180000.0], [521000.0, 180000.0], [521000.0, 181000.0], [522000.0, 181000.0], [522000.0, 180000.0]]]}}, {"id": "909", "type": "Feature", "properties": {"easting": 522500.0, "northing": 180500.0, "gridsq": "X522Y180", "numresp": 864, "numpeople": 2021.76, "numkeys": 8, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 180000.0], [522000.0, 180000.0], [522000.0, 181000.0], [523000.0, 181000.0], [523000.0, 180000.0]]]}}, {"id": "910", "type": "Feature", "properties": {"easting": 523500.0, "northing": 180500.0, "gridsq": "X523Y180", "numresp": 1186, "numpeople": 2775.24, "numkeys": 13, "numnonresp": 70, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 180000.0], [523000.0, 180000.0], [523000.0, 181000.0], [524000.0, 181000.0], [524000.0, 180000.0]]]}}, {"id": "911", "type": "Feature", "properties": {"easting": 524500.0, "northing": 180500.0, "gridsq": "X524Y180", "numresp": 1455, "numpeople": 3404.7, "numkeys": 12, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 180000.0], [524000.0, 180000.0], [524000.0, 181000.0], [525000.0, 181000.0], [525000.0, 180000.0]]]}}, {"id": "912", "type": "Feature", "properties": {"easting": 525500.0, "northing": 180500.0, "gridsq": "X525Y180", "numresp": 995, "numpeople": 2328.3, "numkeys": 4, "numnonresp": 49, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 180000.0], [525000.0, 180000.0], [525000.0, 181000.0], [526000.0, 181000.0], [526000.0, 180000.0]]]}}, {"id": "913", "type": "Feature", "properties": {"easting": 526500.0, "northing": 180500.0, "gridsq": "X526Y180", "numresp": 366, "numpeople": 856.44, "numkeys": 0, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 180000.0], [526000.0, 180000.0], [526000.0, 181000.0], [527000.0, 181000.0], [527000.0, 180000.0]]]}}, {"id": "914", "type": "Feature", "properties": {"easting": 528500.0, "northing": 180500.0, "gridsq": "X528Y180", "numresp": 294, "numpeople": 687.96, "numkeys": 3, "numnonresp": 806, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 180000.0], [528000.0, 180000.0], [528000.0, 181000.0], [529000.0, 181000.0], [529000.0, 180000.0]]]}}, {"id": "915", "type": "Feature", "properties": {"easting": 529500.0, "northing": 180500.0, "gridsq": "X529Y180", "numresp": 255, "numpeople": 596.7, "numkeys": 1, "numnonresp": 117, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 180000.0], [529000.0, 180000.0], [529000.0, 181000.0], [530000.0, 181000.0], [530000.0, 180000.0]]]}}, {"id": "916", "type": "Feature", "properties": {"easting": 530500.0, "northing": 180500.0, "gridsq": "X530Y180", "numresp": 83, "numpeople": 194.22, "numkeys": 2, "numnonresp": 134, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 180000.0], [530000.0, 180000.0], [530000.0, 181000.0], [531000.0, 181000.0], [531000.0, 180000.0]]]}}, {"id": "917", "type": "Feature", "properties": {"easting": 531500.0, "northing": 180500.0, "gridsq": "X531Y180", "numresp": 57, "numpeople": 133.38, "numkeys": 4, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 180000.0], [531000.0, 180000.0], [531000.0, 181000.0], [532000.0, 181000.0], [532000.0, 180000.0]]]}}, {"id": "918", "type": "Feature", "properties": {"easting": 532500.0, "northing": 180500.0, "gridsq": "X532Y180", "numresp": 100, "numpeople": 234.0, "numkeys": 2, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 180000.0], [532000.0, 180000.0], [532000.0, 181000.0], [533000.0, 181000.0], [533000.0, 180000.0]]]}}, {"id": "919", "type": "Feature", "properties": {"easting": 535500.0, "northing": 180500.0, "gridsq": "X535Y180", "numresp": 219, "numpeople": 512.46, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 180000.0], [535000.0, 180000.0], [535000.0, 181000.0], [536000.0, 181000.0], [536000.0, 180000.0]]]}}, {"id": "920", "type": "Feature", "properties": {"easting": 537500.0, "northing": 180500.0, "gridsq": "X537Y180", "numresp": 28, "numpeople": 65.52, "numkeys": 32, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 180000.0], [537000.0, 180000.0], [537000.0, 181000.0], [538000.0, 181000.0], [538000.0, 180000.0]]]}}, {"id": "921", "type": "Feature", "properties": {"easting": 539500.0, "northing": 180500.0, "gridsq": "X539Y180", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 180000.0], [539000.0, 180000.0], [539000.0, 181000.0], [540000.0, 181000.0], [540000.0, 180000.0]]]}}, {"id": "922", "type": "Feature", "properties": {"easting": 540500.0, "northing": 180500.0, "gridsq": "X540Y180", "numresp": 111, "numpeople": 259.74, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 180000.0], [540000.0, 180000.0], [540000.0, 181000.0], [541000.0, 181000.0], [541000.0, 180000.0]]]}}, {"id": "923", "type": "Feature", "properties": {"easting": 541500.0, "northing": 180500.0, "gridsq": "X541Y180", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 180000.0], [541000.0, 180000.0], [541000.0, 181000.0], [542000.0, 181000.0], [542000.0, 180000.0]]]}}, {"id": "924", "type": "Feature", "properties": {"easting": 556500.0, "northing": 180500.0, "gridsq": "X556Y180", "numresp": 17, "numpeople": 39.78, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[557000.0, 180000.0], [556000.0, 180000.0], [556000.0, 181000.0], [557000.0, 181000.0], [557000.0, 180000.0]]]}}, {"id": "925", "type": "Feature", "properties": {"easting": 370500.0, "northing": 181500.0, "gridsq": "X370Y181", "numresp": 233, "numpeople": 545.22, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[371000.0, 181000.0], [370000.0, 181000.0], [370000.0, 182000.0], [371000.0, 182000.0], [371000.0, 181000.0]]]}}, {"id": "926", "type": "Feature", "properties": {"easting": 371500.0, "northing": 181500.0, "gridsq": "X371Y181", "numresp": 172, "numpeople": 402.48, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 181000.0], [371000.0, 181000.0], [371000.0, 182000.0], [372000.0, 182000.0], [372000.0, 181000.0]]]}}, {"id": "927", "type": "Feature", "properties": {"easting": 448500.0, "northing": 181500.0, "gridsq": "X448Y181", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 181000.0], [448000.0, 181000.0], [448000.0, 182000.0], [449000.0, 182000.0], [449000.0, 181000.0]]]}}, {"id": "928", "type": "Feature", "properties": {"easting": 487500.0, "northing": 181500.0, "gridsq": "X487Y181", "numresp": 139, "numpeople": 325.26, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 181000.0], [487000.0, 181000.0], [487000.0, 182000.0], [488000.0, 182000.0], [488000.0, 181000.0]]]}}, {"id": "929", "type": "Feature", "properties": {"easting": 488500.0, "northing": 181500.0, "gridsq": "X488Y181", "numresp": 176, "numpeople": 411.84, "numkeys": 2, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 181000.0], [488000.0, 181000.0], [488000.0, 182000.0], [489000.0, 182000.0], [489000.0, 181000.0]]]}}, {"id": "930", "type": "Feature", "properties": {"easting": 492500.0, "northing": 181500.0, "gridsq": "X492Y181", "numresp": 241, "numpeople": 563.94, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[493000.0, 181000.0], [492000.0, 181000.0], [492000.0, 182000.0], [493000.0, 182000.0], [493000.0, 181000.0]]]}}, {"id": "931", "type": "Feature", "properties": {"easting": 493500.0, "northing": 181500.0, "gridsq": "X493Y181", "numresp": 196, "numpeople": 458.64, "numkeys": 5, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[494000.0, 181000.0], [493000.0, 181000.0], [493000.0, 182000.0], [494000.0, 182000.0], [494000.0, 181000.0]]]}}, {"id": "932", "type": "Feature", "properties": {"easting": 496500.0, "northing": 181500.0, "gridsq": "X496Y181", "numresp": 539, "numpeople": 1261.26, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 181000.0], [496000.0, 181000.0], [496000.0, 182000.0], [497000.0, 182000.0], [497000.0, 181000.0]]]}}, {"id": "933", "type": "Feature", "properties": {"easting": 497500.0, "northing": 181500.0, "gridsq": "X497Y181", "numresp": 159, "numpeople": 372.06, "numkeys": 0, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[498000.0, 181000.0], [497000.0, 181000.0], [497000.0, 182000.0], [498000.0, 182000.0], [498000.0, 181000.0]]]}}, {"id": "934", "type": "Feature", "properties": {"easting": 506500.0, "northing": 181500.0, "gridsq": "X506Y181", "numresp": 119, "numpeople": 278.46, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 181000.0], [506000.0, 181000.0], [506000.0, 182000.0], [507000.0, 182000.0], [507000.0, 181000.0]]]}}, {"id": "935", "type": "Feature", "properties": {"easting": 522500.0, "northing": 181500.0, "gridsq": "X522Y181", "numresp": 26, "numpeople": 60.84, "numkeys": 6, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 181000.0], [522000.0, 181000.0], [522000.0, 182000.0], [523000.0, 182000.0], [523000.0, 181000.0]]]}}, {"id": "936", "type": "Feature", "properties": {"easting": 523500.0, "northing": 181500.0, "gridsq": "X523Y181", "numresp": 1014, "numpeople": 2372.76, "numkeys": 5, "numnonresp": 80, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 181000.0], [523000.0, 181000.0], [523000.0, 182000.0], [524000.0, 182000.0], [524000.0, 181000.0]]]}}, {"id": "937", "type": "Feature", "properties": {"easting": 524500.0, "northing": 181500.0, "gridsq": "X524Y181", "numresp": 2488, "numpeople": 5821.92, "numkeys": 5, "numnonresp": 86, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 181000.0], [524000.0, 181000.0], [524000.0, 182000.0], [525000.0, 182000.0], [525000.0, 181000.0]]]}}, {"id": "938", "type": "Feature", "properties": {"easting": 525500.0, "northing": 181500.0, "gridsq": "X525Y181", "numresp": 712, "numpeople": 1666.08, "numkeys": 2, "numnonresp": 101, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 181000.0], [525000.0, 181000.0], [525000.0, 182000.0], [526000.0, 182000.0], [526000.0, 181000.0]]]}}, {"id": "939", "type": "Feature", "properties": {"easting": 526500.0, "northing": 181500.0, "gridsq": "X526Y181", "numresp": 538, "numpeople": 1258.92, "numkeys": 1, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 181000.0], [526000.0, 181000.0], [526000.0, 182000.0], [527000.0, 182000.0], [527000.0, 181000.0]]]}}, {"id": "940", "type": "Feature", "properties": {"easting": 527500.0, "northing": 181500.0, "gridsq": "X527Y181", "numresp": 660, "numpeople": 1544.4, "numkeys": 2, "numnonresp": 68, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 181000.0], [527000.0, 181000.0], [527000.0, 182000.0], [528000.0, 182000.0], [528000.0, 181000.0]]]}}, {"id": "941", "type": "Feature", "properties": {"easting": 528500.0, "northing": 181500.0, "gridsq": "X528Y181", "numresp": 613, "numpeople": 1434.42, "numkeys": 17, "numnonresp": 488, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 181000.0], [528000.0, 181000.0], [528000.0, 182000.0], [529000.0, 182000.0], [529000.0, 181000.0]]]}}, {"id": "942", "type": "Feature", "properties": {"easting": 529500.0, "northing": 181500.0, "gridsq": "X529Y181", "numresp": 130, "numpeople": 304.2, "numkeys": 1, "numnonresp": 137, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 181000.0], [529000.0, 181000.0], [529000.0, 182000.0], [530000.0, 182000.0], [530000.0, 181000.0]]]}}, {"id": "943", "type": "Feature", "properties": {"easting": 530500.0, "northing": 181500.0, "gridsq": "X530Y181", "numresp": 147, "numpeople": 343.98, "numkeys": 1, "numnonresp": 151, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 181000.0], [530000.0, 181000.0], [530000.0, 182000.0], [531000.0, 182000.0], [531000.0, 181000.0]]]}}, {"id": "944", "type": "Feature", "properties": {"easting": 531500.0, "northing": 181500.0, "gridsq": "X531Y181", "numresp": 22, "numpeople": 51.48, "numkeys": 7, "numnonresp": 81, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 181000.0], [531000.0, 181000.0], [531000.0, 182000.0], [532000.0, 182000.0], [532000.0, 181000.0]]]}}, {"id": "945", "type": "Feature", "properties": {"easting": 533500.0, "northing": 181500.0, "gridsq": "X533Y181", "numresp": 139, "numpeople": 325.26, "numkeys": 6, "numnonresp": 164, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 181000.0], [533000.0, 181000.0], [533000.0, 182000.0], [534000.0, 182000.0], [534000.0, 181000.0]]]}}, {"id": "946", "type": "Feature", "properties": {"easting": 534500.0, "northing": 181500.0, "gridsq": "X534Y181", "numresp": 127, "numpeople": 297.18, "numkeys": 1, "numnonresp": 61, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 181000.0], [534000.0, 181000.0], [534000.0, 182000.0], [535000.0, 182000.0], [535000.0, 181000.0]]]}}, {"id": "947", "type": "Feature", "properties": {"easting": 535500.0, "northing": 181500.0, "gridsq": "X535Y181", "numresp": 196, "numpeople": 458.64, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 181000.0], [535000.0, 181000.0], [535000.0, 182000.0], [536000.0, 182000.0], [536000.0, 181000.0]]]}}, {"id": "948", "type": "Feature", "properties": {"easting": 536500.0, "northing": 181500.0, "gridsq": "X536Y181", "numresp": 75, "numpeople": 175.5, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 181000.0], [536000.0, 181000.0], [536000.0, 182000.0], [537000.0, 182000.0], [537000.0, 181000.0]]]}}, {"id": "949", "type": "Feature", "properties": {"easting": 537500.0, "northing": 181500.0, "gridsq": "X537Y181", "numresp": 165, "numpeople": 386.1, "numkeys": 1, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 181000.0], [537000.0, 181000.0], [537000.0, 182000.0], [538000.0, 182000.0], [538000.0, 181000.0]]]}}, {"id": "950", "type": "Feature", "properties": {"easting": 541500.0, "northing": 181500.0, "gridsq": "X541Y181", "numresp": 87, "numpeople": 203.58, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 181000.0], [541000.0, 181000.0], [541000.0, 182000.0], [542000.0, 182000.0], [542000.0, 181000.0]]]}}, {"id": "951", "type": "Feature", "properties": {"easting": 567500.0, "northing": 181500.0, "gridsq": "X567Y181", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[568000.0, 181000.0], [567000.0, 181000.0], [567000.0, 182000.0], [568000.0, 182000.0], [568000.0, 181000.0]]]}}, {"id": "952", "type": "Feature", "properties": {"easting": 568500.0, "northing": 181500.0, "gridsq": "X568Y181", "numresp": 59, "numpeople": 138.06, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[569000.0, 181000.0], [568000.0, 181000.0], [568000.0, 182000.0], [569000.0, 182000.0], [569000.0, 181000.0]]]}}, {"id": "953", "type": "Feature", "properties": {"easting": 371500.0, "northing": 182500.0, "gridsq": "X371Y182", "numresp": 76, "numpeople": 177.84, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 182000.0], [371000.0, 182000.0], [371000.0, 183000.0], [372000.0, 183000.0], [372000.0, 182000.0]]]}}, {"id": "954", "type": "Feature", "properties": {"easting": 373500.0, "northing": 182500.0, "gridsq": "X373Y182", "numresp": 103, "numpeople": 241.02, "numkeys": 13, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[374000.0, 182000.0], [373000.0, 182000.0], [373000.0, 183000.0], [374000.0, 183000.0], [374000.0, 182000.0]]]}}, {"id": "955", "type": "Feature", "properties": {"easting": 416500.0, "northing": 182500.0, "gridsq": "X416Y182", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 182000.0], [416000.0, 182000.0], [416000.0, 183000.0], [417000.0, 183000.0], [417000.0, 182000.0]]]}}, {"id": "956", "type": "Feature", "properties": {"easting": 476500.0, "northing": 182500.0, "gridsq": "X476Y182", "numresp": 172, "numpeople": 402.48, "numkeys": 2, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[477000.0, 182000.0], [476000.0, 182000.0], [476000.0, 183000.0], [477000.0, 183000.0], [477000.0, 182000.0]]]}}, {"id": "957", "type": "Feature", "properties": {"easting": 488500.0, "northing": 182500.0, "gridsq": "X488Y182", "numresp": 126, "numpeople": 294.84, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 182000.0], [488000.0, 182000.0], [488000.0, 183000.0], [489000.0, 183000.0], [489000.0, 182000.0]]]}}, {"id": "958", "type": "Feature", "properties": {"easting": 496500.0, "northing": 182500.0, "gridsq": "X496Y182", "numresp": 92, "numpeople": 215.28, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 182000.0], [496000.0, 182000.0], [496000.0, 183000.0], [497000.0, 183000.0], [497000.0, 182000.0]]]}}, {"id": "959", "type": "Feature", "properties": {"easting": 505500.0, "northing": 182500.0, "gridsq": "X505Y182", "numresp": 3, "numpeople": 7.02, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 182000.0], [505000.0, 182000.0], [505000.0, 183000.0], [506000.0, 183000.0], [506000.0, 182000.0]]]}}, {"id": "960", "type": "Feature", "properties": {"easting": 509500.0, "northing": 182500.0, "gridsq": "X509Y182", "numresp": 124, "numpeople": 290.16, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[510000.0, 182000.0], [509000.0, 182000.0], [509000.0, 183000.0], [510000.0, 183000.0], [510000.0, 182000.0]]]}}, {"id": "961", "type": "Feature", "properties": {"easting": 510500.0, "northing": 182500.0, "gridsq": "X510Y182", "numresp": 58, "numpeople": 135.72, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 182000.0], [510000.0, 182000.0], [510000.0, 183000.0], [511000.0, 183000.0], [511000.0, 182000.0]]]}}, {"id": "962", "type": "Feature", "properties": {"easting": 511500.0, "northing": 182500.0, "gridsq": "X511Y182", "numresp": 235, "numpeople": 549.9, "numkeys": 4, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 182000.0], [511000.0, 182000.0], [511000.0, 183000.0], [512000.0, 183000.0], [512000.0, 182000.0]]]}}, {"id": "963", "type": "Feature", "properties": {"easting": 512500.0, "northing": 182500.0, "gridsq": "X512Y182", "numresp": 278, "numpeople": 650.52, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 182000.0], [512000.0, 182000.0], [512000.0, 183000.0], [513000.0, 183000.0], [513000.0, 182000.0]]]}}, {"id": "964", "type": "Feature", "properties": {"easting": 514500.0, "northing": 182500.0, "gridsq": "X514Y182", "numresp": 148, "numpeople": 346.32, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 182000.0], [514000.0, 182000.0], [514000.0, 183000.0], [515000.0, 183000.0], [515000.0, 182000.0]]]}}, {"id": "965", "type": "Feature", "properties": {"easting": 515500.0, "northing": 182500.0, "gridsq": "X515Y182", "numresp": 213, "numpeople": 498.42, "numkeys": 4, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 182000.0], [515000.0, 182000.0], [515000.0, 183000.0], [516000.0, 183000.0], [516000.0, 182000.0]]]}}, {"id": "966", "type": "Feature", "properties": {"easting": 516500.0, "northing": 182500.0, "gridsq": "X516Y182", "numresp": 46, "numpeople": 107.64, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 182000.0], [516000.0, 182000.0], [516000.0, 183000.0], [517000.0, 183000.0], [517000.0, 182000.0]]]}}, {"id": "967", "type": "Feature", "properties": {"easting": 517500.0, "northing": 182500.0, "gridsq": "X517Y182", "numresp": 42, "numpeople": 98.28, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 182000.0], [517000.0, 182000.0], [517000.0, 183000.0], [518000.0, 183000.0], [518000.0, 182000.0]]]}}, {"id": "968", "type": "Feature", "properties": {"easting": 518500.0, "northing": 182500.0, "gridsq": "X518Y182", "numresp": 89, "numpeople": 208.26, "numkeys": 1, "numnonresp": 74, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 182000.0], [518000.0, 182000.0], [518000.0, 183000.0], [519000.0, 183000.0], [519000.0, 182000.0]]]}}, {"id": "969", "type": "Feature", "properties": {"easting": 519500.0, "northing": 182500.0, "gridsq": "X519Y182", "numresp": 37, "numpeople": 86.58, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 182000.0], [519000.0, 182000.0], [519000.0, 183000.0], [520000.0, 183000.0], [520000.0, 182000.0]]]}}, {"id": "970", "type": "Feature", "properties": {"easting": 521500.0, "northing": 182500.0, "gridsq": "X521Y182", "numresp": 7, "numpeople": 16.38, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 182000.0], [521000.0, 182000.0], [521000.0, 183000.0], [522000.0, 183000.0], [522000.0, 182000.0]]]}}, {"id": "971", "type": "Feature", "properties": {"easting": 522500.0, "northing": 182500.0, "gridsq": "X522Y182", "numresp": 7, "numpeople": 16.38, "numkeys": 1, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 182000.0], [522000.0, 182000.0], [522000.0, 183000.0], [523000.0, 183000.0], [523000.0, 182000.0]]]}}, {"id": "972", "type": "Feature", "properties": {"easting": 524500.0, "northing": 182500.0, "gridsq": "X524Y182", "numresp": 859, "numpeople": 2010.06, "numkeys": 4, "numnonresp": 64, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 182000.0], [524000.0, 182000.0], [524000.0, 183000.0], [525000.0, 183000.0], [525000.0, 182000.0]]]}}, {"id": "973", "type": "Feature", "properties": {"easting": 525500.0, "northing": 182500.0, "gridsq": "X525Y182", "numresp": 2062, "numpeople": 4825.08, "numkeys": 7, "numnonresp": 154, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 182000.0], [525000.0, 182000.0], [525000.0, 183000.0], [526000.0, 183000.0], [526000.0, 182000.0]]]}}, {"id": "974", "type": "Feature", "properties": {"easting": 526500.0, "northing": 182500.0, "gridsq": "X526Y182", "numresp": 584, "numpeople": 1366.56, "numkeys": 2, "numnonresp": 67, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 182000.0], [526000.0, 182000.0], [526000.0, 183000.0], [527000.0, 183000.0], [527000.0, 182000.0]]]}}, {"id": "975", "type": "Feature", "properties": {"easting": 527500.0, "northing": 182500.0, "gridsq": "X527Y182", "numresp": 294, "numpeople": 687.96, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 182000.0], [527000.0, 182000.0], [527000.0, 183000.0], [528000.0, 183000.0], [528000.0, 182000.0]]]}}, {"id": "976", "type": "Feature", "properties": {"easting": 528500.0, "northing": 182500.0, "gridsq": "X528Y182", "numresp": 139, "numpeople": 325.26, "numkeys": 14, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 182000.0], [528000.0, 182000.0], [528000.0, 183000.0], [529000.0, 183000.0], [529000.0, 182000.0]]]}}, {"id": "977", "type": "Feature", "properties": {"easting": 529500.0, "northing": 182500.0, "gridsq": "X529Y182", "numresp": 87, "numpeople": 203.58, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 182000.0], [529000.0, 182000.0], [529000.0, 183000.0], [530000.0, 183000.0], [530000.0, 182000.0]]]}}, {"id": "978", "type": "Feature", "properties": {"easting": 530500.0, "northing": 182500.0, "gridsq": "X530Y182", "numresp": 217, "numpeople": 507.78, "numkeys": 4, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 182000.0], [530000.0, 182000.0], [530000.0, 183000.0], [531000.0, 183000.0], [531000.0, 182000.0]]]}}, {"id": "979", "type": "Feature", "properties": {"easting": 531500.0, "northing": 182500.0, "gridsq": "X531Y182", "numresp": 174, "numpeople": 407.16, "numkeys": 2, "numnonresp": 74, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 182000.0], [531000.0, 182000.0], [531000.0, 183000.0], [532000.0, 183000.0], [532000.0, 182000.0]]]}}, {"id": "980", "type": "Feature", "properties": {"easting": 532500.0, "northing": 182500.0, "gridsq": "X532Y182", "numresp": 163, "numpeople": 381.42, "numkeys": 2, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 182000.0], [532000.0, 182000.0], [532000.0, 183000.0], [533000.0, 183000.0], [533000.0, 182000.0]]]}}, {"id": "981", "type": "Feature", "properties": {"easting": 533500.0, "northing": 182500.0, "gridsq": "X533Y182", "numresp": 251, "numpeople": 587.34, "numkeys": 2, "numnonresp": 234, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 182000.0], [533000.0, 182000.0], [533000.0, 183000.0], [534000.0, 183000.0], [534000.0, 182000.0]]]}}, {"id": "982", "type": "Feature", "properties": {"easting": 534500.0, "northing": 182500.0, "gridsq": "X534Y182", "numresp": 154, "numpeople": 360.36, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 182000.0], [534000.0, 182000.0], [534000.0, 183000.0], [535000.0, 183000.0], [535000.0, 182000.0]]]}}, {"id": "983", "type": "Feature", "properties": {"easting": 535500.0, "northing": 182500.0, "gridsq": "X535Y182", "numresp": 164, "numpeople": 383.76, "numkeys": 0, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 182000.0], [535000.0, 182000.0], [535000.0, 183000.0], [536000.0, 183000.0], [536000.0, 182000.0]]]}}, {"id": "984", "type": "Feature", "properties": {"easting": 537500.0, "northing": 182500.0, "gridsq": "X537Y182", "numresp": 152, "numpeople": 355.68, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 182000.0], [537000.0, 182000.0], [537000.0, 183000.0], [538000.0, 183000.0], [538000.0, 182000.0]]]}}, {"id": "985", "type": "Feature", "properties": {"easting": 539500.0, "northing": 182500.0, "gridsq": "X539Y182", "numresp": 71, "numpeople": 166.14, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 182000.0], [539000.0, 182000.0], [539000.0, 183000.0], [540000.0, 183000.0], [540000.0, 182000.0]]]}}, {"id": "986", "type": "Feature", "properties": {"easting": 541500.0, "northing": 182500.0, "gridsq": "X541Y182", "numresp": 110, "numpeople": 257.4, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 182000.0], [541000.0, 182000.0], [541000.0, 183000.0], [542000.0, 183000.0], [542000.0, 182000.0]]]}}, {"id": "987", "type": "Feature", "properties": {"easting": 549500.0, "northing": 182500.0, "gridsq": "X549Y182", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 182000.0], [549000.0, 182000.0], [549000.0, 183000.0], [550000.0, 183000.0], [550000.0, 182000.0]]]}}, {"id": "988", "type": "Feature", "properties": {"easting": 568500.0, "northing": 182500.0, "gridsq": "X568Y182", "numresp": 434, "numpeople": 1015.56, "numkeys": 4, "numnonresp": 63, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[569000.0, 182000.0], [568000.0, 182000.0], [568000.0, 183000.0], [569000.0, 183000.0], [569000.0, 182000.0]]]}}, {"id": "989", "type": "Feature", "properties": {"easting": 569500.0, "northing": 182500.0, "gridsq": "X569Y182", "numresp": 94, "numpeople": 219.96, "numkeys": 4, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[570000.0, 182000.0], [569000.0, 182000.0], [569000.0, 183000.0], [570000.0, 183000.0], [570000.0, 182000.0]]]}}, {"id": "990", "type": "Feature", "properties": {"easting": 505500.0, "northing": 183500.0, "gridsq": "X505Y183", "numresp": 45, "numpeople": 105.3, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 183000.0], [505000.0, 183000.0], [505000.0, 184000.0], [506000.0, 184000.0], [506000.0, 183000.0]]]}}, {"id": "991", "type": "Feature", "properties": {"easting": 513500.0, "northing": 183500.0, "gridsq": "X513Y183", "numresp": 67, "numpeople": 156.78, "numkeys": 6, "numnonresp": 78, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 183000.0], [513000.0, 183000.0], [513000.0, 184000.0], [514000.0, 184000.0], [514000.0, 183000.0]]]}}, {"id": "992", "type": "Feature", "properties": {"easting": 514500.0, "northing": 183500.0, "gridsq": "X514Y183", "numresp": 142, "numpeople": 332.28, "numkeys": 4, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 183000.0], [514000.0, 183000.0], [514000.0, 184000.0], [515000.0, 184000.0], [515000.0, 183000.0]]]}}, {"id": "993", "type": "Feature", "properties": {"easting": 515500.0, "northing": 183500.0, "gridsq": "X515Y183", "numresp": 171, "numpeople": 400.14, "numkeys": 3, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 183000.0], [515000.0, 183000.0], [515000.0, 184000.0], [516000.0, 184000.0], [516000.0, 183000.0]]]}}, {"id": "994", "type": "Feature", "properties": {"easting": 516500.0, "northing": 183500.0, "gridsq": "X516Y183", "numresp": 148, "numpeople": 346.32, "numkeys": 6, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 183000.0], [516000.0, 183000.0], [516000.0, 184000.0], [517000.0, 184000.0], [517000.0, 183000.0]]]}}, {"id": "995", "type": "Feature", "properties": {"easting": 518500.0, "northing": 183500.0, "gridsq": "X518Y183", "numresp": 134, "numpeople": 313.56, "numkeys": 2, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 183000.0], [518000.0, 183000.0], [518000.0, 184000.0], [519000.0, 184000.0], [519000.0, 183000.0]]]}}, {"id": "996", "type": "Feature", "properties": {"easting": 521500.0, "northing": 183500.0, "gridsq": "X521Y183", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 183000.0], [521000.0, 183000.0], [521000.0, 184000.0], [522000.0, 184000.0], [522000.0, 183000.0]]]}}, {"id": "997", "type": "Feature", "properties": {"easting": 522500.0, "northing": 183500.0, "gridsq": "X522Y183", "numresp": 87, "numpeople": 203.58, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 183000.0], [522000.0, 183000.0], [522000.0, 184000.0], [523000.0, 184000.0], [523000.0, 183000.0]]]}}, {"id": "998", "type": "Feature", "properties": {"easting": 523500.0, "northing": 183500.0, "gridsq": "X523Y183", "numresp": 159, "numpeople": 372.06, "numkeys": 0, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 183000.0], [523000.0, 183000.0], [523000.0, 184000.0], [524000.0, 184000.0], [524000.0, 183000.0]]]}}, {"id": "999", "type": "Feature", "properties": {"easting": 524500.0, "northing": 183500.0, "gridsq": "X524Y183", "numresp": 151, "numpeople": 353.34, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 183000.0], [524000.0, 183000.0], [524000.0, 184000.0], [525000.0, 184000.0], [525000.0, 183000.0]]]}}, {"id": "1000", "type": "Feature", "properties": {"easting": 525500.0, "northing": 183500.0, "gridsq": "X525Y183", "numresp": 592, "numpeople": 1385.28, "numkeys": 3, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 183000.0], [525000.0, 183000.0], [525000.0, 184000.0], [526000.0, 184000.0], [526000.0, 183000.0]]]}}, {"id": "1001", "type": "Feature", "properties": {"easting": 526500.0, "northing": 183500.0, "gridsq": "X526Y183", "numresp": 274, "numpeople": 641.16, "numkeys": 2, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 183000.0], [526000.0, 183000.0], [526000.0, 184000.0], [527000.0, 184000.0], [527000.0, 183000.0]]]}}, {"id": "1002", "type": "Feature", "properties": {"easting": 527500.0, "northing": 183500.0, "gridsq": "X527Y183", "numresp": 202, "numpeople": 472.68, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 183000.0], [527000.0, 183000.0], [527000.0, 184000.0], [528000.0, 184000.0], [528000.0, 183000.0]]]}}, {"id": "1003", "type": "Feature", "properties": {"easting": 528500.0, "northing": 183500.0, "gridsq": "X528Y183", "numresp": 235, "numpeople": 549.9, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 183000.0], [528000.0, 183000.0], [528000.0, 184000.0], [529000.0, 184000.0], [529000.0, 183000.0]]]}}, {"id": "1004", "type": "Feature", "properties": {"easting": 529500.0, "northing": 183500.0, "gridsq": "X529Y183", "numresp": 179, "numpeople": 418.86, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 183000.0], [529000.0, 183000.0], [529000.0, 184000.0], [530000.0, 184000.0], [530000.0, 183000.0]]]}}, {"id": "1005", "type": "Feature", "properties": {"easting": 530500.0, "northing": 183500.0, "gridsq": "X530Y183", "numresp": 377, "numpeople": 882.18, "numkeys": 5, "numnonresp": 79, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 183000.0], [530000.0, 183000.0], [530000.0, 184000.0], [531000.0, 184000.0], [531000.0, 183000.0]]]}}, {"id": "1006", "type": "Feature", "properties": {"easting": 531500.0, "northing": 183500.0, "gridsq": "X531Y183", "numresp": 210, "numpeople": 491.4, "numkeys": 1, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 183000.0], [531000.0, 183000.0], [531000.0, 184000.0], [532000.0, 184000.0], [532000.0, 183000.0]]]}}, {"id": "1007", "type": "Feature", "properties": {"easting": 532500.0, "northing": 183500.0, "gridsq": "X532Y183", "numresp": 395, "numpeople": 924.3, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 183000.0], [532000.0, 183000.0], [532000.0, 184000.0], [533000.0, 184000.0], [533000.0, 183000.0]]]}}, {"id": "1008", "type": "Feature", "properties": {"easting": 533500.0, "northing": 183500.0, "gridsq": "X533Y183", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 183000.0], [533000.0, 183000.0], [533000.0, 184000.0], [534000.0, 184000.0], [534000.0, 183000.0]]]}}, {"id": "1009", "type": "Feature", "properties": {"easting": 534500.0, "northing": 183500.0, "gridsq": "X534Y183", "numresp": 137, "numpeople": 320.58, "numkeys": 4, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 183000.0], [534000.0, 183000.0], [534000.0, 184000.0], [535000.0, 184000.0], [535000.0, 183000.0]]]}}, {"id": "1010", "type": "Feature", "properties": {"easting": 537500.0, "northing": 183500.0, "gridsq": "X537Y183", "numresp": 144, "numpeople": 336.96, "numkeys": 4, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 183000.0], [537000.0, 183000.0], [537000.0, 184000.0], [538000.0, 184000.0], [538000.0, 183000.0]]]}}, {"id": "1011", "type": "Feature", "properties": {"easting": 539500.0, "northing": 183500.0, "gridsq": "X539Y183", "numresp": 162, "numpeople": 379.08, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 183000.0], [539000.0, 183000.0], [539000.0, 184000.0], [540000.0, 184000.0], [540000.0, 183000.0]]]}}, {"id": "1012", "type": "Feature", "properties": {"easting": 540500.0, "northing": 183500.0, "gridsq": "X540Y183", "numresp": 126, "numpeople": 294.84, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 183000.0], [540000.0, 183000.0], [540000.0, 184000.0], [541000.0, 184000.0], [541000.0, 183000.0]]]}}, {"id": "1013", "type": "Feature", "properties": {"easting": 541500.0, "northing": 183500.0, "gridsq": "X541Y183", "numresp": 114, "numpeople": 266.76, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 183000.0], [541000.0, 183000.0], [541000.0, 184000.0], [542000.0, 184000.0], [542000.0, 183000.0]]]}}, {"id": "1014", "type": "Feature", "properties": {"easting": 542500.0, "northing": 183500.0, "gridsq": "X542Y183", "numresp": 28, "numpeople": 65.52, "numkeys": 2, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 183000.0], [542000.0, 183000.0], [542000.0, 184000.0], [543000.0, 184000.0], [543000.0, 183000.0]]]}}, {"id": "1015", "type": "Feature", "properties": {"easting": 545500.0, "northing": 183500.0, "gridsq": "X545Y183", "numresp": 15, "numpeople": 35.1, "numkeys": 1, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 183000.0], [545000.0, 183000.0], [545000.0, 184000.0], [546000.0, 184000.0], [546000.0, 183000.0]]]}}, {"id": "1016", "type": "Feature", "properties": {"easting": 551500.0, "northing": 183500.0, "gridsq": "X551Y183", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 183000.0], [551000.0, 183000.0], [551000.0, 184000.0], [552000.0, 184000.0], [552000.0, 183000.0]]]}}, {"id": "1017", "type": "Feature", "properties": {"easting": 568500.0, "northing": 183500.0, "gridsq": "X568Y183", "numresp": 288, "numpeople": 673.92, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[569000.0, 183000.0], [568000.0, 183000.0], [568000.0, 184000.0], [569000.0, 184000.0], [569000.0, 183000.0]]]}}, {"id": "1018", "type": "Feature", "properties": {"easting": 569500.0, "northing": 183500.0, "gridsq": "X569Y183", "numresp": 532, "numpeople": 1244.88, "numkeys": 8, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[570000.0, 183000.0], [569000.0, 183000.0], [569000.0, 184000.0], [570000.0, 184000.0], [570000.0, 183000.0]]]}}, {"id": "1019", "type": "Feature", "properties": {"easting": 570500.0, "northing": 183500.0, "gridsq": "X570Y183", "numresp": 115, "numpeople": 269.1, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[571000.0, 183000.0], [570000.0, 183000.0], [570000.0, 184000.0], [571000.0, 184000.0], [571000.0, 183000.0]]]}}, {"id": "1020", "type": "Feature", "properties": {"easting": 576500.0, "northing": 183500.0, "gridsq": "X576Y183", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 183000.0], [576000.0, 183000.0], [576000.0, 184000.0], [577000.0, 184000.0], [577000.0, 183000.0]]]}}, {"id": "1021", "type": "Feature", "properties": {"easting": 580500.0, "northing": 183500.0, "gridsq": "X580Y183", "numresp": 59, "numpeople": 138.06, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[581000.0, 183000.0], [580000.0, 183000.0], [580000.0, 184000.0], [581000.0, 184000.0], [581000.0, 183000.0]]]}}, {"id": "1022", "type": "Feature", "properties": {"easting": 414500.0, "northing": 184500.0, "gridsq": "X414Y184", "numresp": 66, "numpeople": 154.44, "numkeys": 1, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 184000.0], [414000.0, 184000.0], [414000.0, 185000.0], [415000.0, 185000.0], [415000.0, 184000.0]]]}}, {"id": "1023", "type": "Feature", "properties": {"easting": 415500.0, "northing": 184500.0, "gridsq": "X415Y184", "numresp": 23, "numpeople": 53.82, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 184000.0], [415000.0, 184000.0], [415000.0, 185000.0], [416000.0, 185000.0], [416000.0, 184000.0]]]}}, {"id": "1024", "type": "Feature", "properties": {"easting": 505500.0, "northing": 184500.0, "gridsq": "X505Y184", "numresp": 14, "numpeople": 32.76, "numkeys": 3, "numnonresp": 71, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 184000.0], [505000.0, 184000.0], [505000.0, 185000.0], [506000.0, 185000.0], [506000.0, 184000.0]]]}}, {"id": "1025", "type": "Feature", "properties": {"easting": 507500.0, "northing": 184500.0, "gridsq": "X507Y184", "numresp": 74, "numpeople": 173.16, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 184000.0], [507000.0, 184000.0], [507000.0, 185000.0], [508000.0, 185000.0], [508000.0, 184000.0]]]}}, {"id": "1026", "type": "Feature", "properties": {"easting": 513500.0, "northing": 184500.0, "gridsq": "X513Y184", "numresp": 100, "numpeople": 234.0, "numkeys": 2, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 184000.0], [513000.0, 184000.0], [513000.0, 185000.0], [514000.0, 185000.0], [514000.0, 184000.0]]]}}, {"id": "1027", "type": "Feature", "properties": {"easting": 514500.0, "northing": 184500.0, "gridsq": "X514Y184", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 184000.0], [514000.0, 184000.0], [514000.0, 185000.0], [515000.0, 185000.0], [515000.0, 184000.0]]]}}, {"id": "1028", "type": "Feature", "properties": {"easting": 518500.0, "northing": 184500.0, "gridsq": "X518Y184", "numresp": 75, "numpeople": 175.5, "numkeys": 4, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 184000.0], [518000.0, 184000.0], [518000.0, 185000.0], [519000.0, 185000.0], [519000.0, 184000.0]]]}}, {"id": "1029", "type": "Feature", "properties": {"easting": 519500.0, "northing": 184500.0, "gridsq": "X519Y184", "numresp": 125, "numpeople": 292.5, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 184000.0], [519000.0, 184000.0], [519000.0, 185000.0], [520000.0, 185000.0], [520000.0, 184000.0]]]}}, {"id": "1030", "type": "Feature", "properties": {"easting": 520500.0, "northing": 184500.0, "gridsq": "X520Y184", "numresp": 152, "numpeople": 355.68, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 184000.0], [520000.0, 184000.0], [520000.0, 185000.0], [521000.0, 185000.0], [521000.0, 184000.0]]]}}, {"id": "1031", "type": "Feature", "properties": {"easting": 521500.0, "northing": 184500.0, "gridsq": "X521Y184", "numresp": 647, "numpeople": 1513.98, "numkeys": 8, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 184000.0], [521000.0, 184000.0], [521000.0, 185000.0], [522000.0, 185000.0], [522000.0, 184000.0]]]}}, {"id": "1032", "type": "Feature", "properties": {"easting": 522500.0, "northing": 184500.0, "gridsq": "X522Y184", "numresp": 130, "numpeople": 304.2, "numkeys": 3, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 184000.0], [522000.0, 184000.0], [522000.0, 185000.0], [523000.0, 185000.0], [523000.0, 184000.0]]]}}, {"id": "1033", "type": "Feature", "properties": {"easting": 524500.0, "northing": 184500.0, "gridsq": "X524Y184", "numresp": 371, "numpeople": 868.14, "numkeys": 1, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 184000.0], [524000.0, 184000.0], [524000.0, 185000.0], [525000.0, 185000.0], [525000.0, 184000.0]]]}}, {"id": "1034", "type": "Feature", "properties": {"easting": 525500.0, "northing": 184500.0, "gridsq": "X525Y184", "numresp": 301, "numpeople": 704.34, "numkeys": 0, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 184000.0], [525000.0, 184000.0], [525000.0, 185000.0], [526000.0, 185000.0], [526000.0, 184000.0]]]}}, {"id": "1035", "type": "Feature", "properties": {"easting": 526500.0, "northing": 184500.0, "gridsq": "X526Y184", "numresp": 414, "numpeople": 968.76, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 184000.0], [526000.0, 184000.0], [526000.0, 185000.0], [527000.0, 185000.0], [527000.0, 184000.0]]]}}, {"id": "1036", "type": "Feature", "properties": {"easting": 527500.0, "northing": 184500.0, "gridsq": "X527Y184", "numresp": 360, "numpeople": 842.4, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 184000.0], [527000.0, 184000.0], [527000.0, 185000.0], [528000.0, 185000.0], [528000.0, 184000.0]]]}}, {"id": "1037", "type": "Feature", "properties": {"easting": 528500.0, "northing": 184500.0, "gridsq": "X528Y184", "numresp": 361, "numpeople": 844.74, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 184000.0], [528000.0, 184000.0], [528000.0, 185000.0], [529000.0, 185000.0], [529000.0, 184000.0]]]}}, {"id": "1038", "type": "Feature", "properties": {"easting": 529500.0, "northing": 184500.0, "gridsq": "X529Y184", "numresp": 219, "numpeople": 512.46, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 184000.0], [529000.0, 184000.0], [529000.0, 185000.0], [530000.0, 185000.0], [530000.0, 184000.0]]]}}, {"id": "1039", "type": "Feature", "properties": {"easting": 530500.0, "northing": 184500.0, "gridsq": "X530Y184", "numresp": 77, "numpeople": 180.18, "numkeys": 5, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 184000.0], [530000.0, 184000.0], [530000.0, 185000.0], [531000.0, 185000.0], [531000.0, 184000.0]]]}}, {"id": "1040", "type": "Feature", "properties": {"easting": 531500.0, "northing": 184500.0, "gridsq": "X531Y184", "numresp": 183, "numpeople": 428.22, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 184000.0], [531000.0, 184000.0], [531000.0, 185000.0], [532000.0, 185000.0], [532000.0, 184000.0]]]}}, {"id": "1041", "type": "Feature", "properties": {"easting": 532500.0, "northing": 184500.0, "gridsq": "X532Y184", "numresp": 252, "numpeople": 589.68, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 184000.0], [532000.0, 184000.0], [532000.0, 185000.0], [533000.0, 185000.0], [533000.0, 184000.0]]]}}, {"id": "1042", "type": "Feature", "properties": {"easting": 533500.0, "northing": 184500.0, "gridsq": "X533Y184", "numresp": 136, "numpeople": 318.24, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 184000.0], [533000.0, 184000.0], [533000.0, 185000.0], [534000.0, 185000.0], [534000.0, 184000.0]]]}}, {"id": "1043", "type": "Feature", "properties": {"easting": 534500.0, "northing": 184500.0, "gridsq": "X534Y184", "numresp": 120, "numpeople": 280.8, "numkeys": 0, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 184000.0], [534000.0, 184000.0], [534000.0, 185000.0], [535000.0, 185000.0], [535000.0, 184000.0]]]}}, {"id": "1044", "type": "Feature", "properties": {"easting": 535500.0, "northing": 184500.0, "gridsq": "X535Y184", "numresp": 145, "numpeople": 339.3, "numkeys": 0, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 184000.0], [535000.0, 184000.0], [535000.0, 185000.0], [536000.0, 185000.0], [536000.0, 184000.0]]]}}, {"id": "1045", "type": "Feature", "properties": {"easting": 536500.0, "northing": 184500.0, "gridsq": "X536Y184", "numresp": 116, "numpeople": 271.44, "numkeys": 1, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 184000.0], [536000.0, 184000.0], [536000.0, 185000.0], [537000.0, 185000.0], [537000.0, 184000.0]]]}}, {"id": "1046", "type": "Feature", "properties": {"easting": 537500.0, "northing": 184500.0, "gridsq": "X537Y184", "numresp": 40, "numpeople": 93.6, "numkeys": 3, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 184000.0], [537000.0, 184000.0], [537000.0, 185000.0], [538000.0, 185000.0], [538000.0, 184000.0]]]}}, {"id": "1047", "type": "Feature", "properties": {"easting": 552500.0, "northing": 184500.0, "gridsq": "X552Y184", "numresp": 118, "numpeople": 276.12, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[553000.0, 184000.0], [552000.0, 184000.0], [552000.0, 185000.0], [553000.0, 185000.0], [553000.0, 184000.0]]]}}, {"id": "1048", "type": "Feature", "properties": {"easting": 569500.0, "northing": 184500.0, "gridsq": "X569Y184", "numresp": 267, "numpeople": 624.78, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[570000.0, 184000.0], [569000.0, 184000.0], [569000.0, 185000.0], [570000.0, 185000.0], [570000.0, 184000.0]]]}}, {"id": "1049", "type": "Feature", "properties": {"easting": 570500.0, "northing": 184500.0, "gridsq": "X570Y184", "numresp": 237, "numpeople": 554.58, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[571000.0, 184000.0], [570000.0, 184000.0], [570000.0, 185000.0], [571000.0, 185000.0], [571000.0, 184000.0]]]}}, {"id": "1050", "type": "Feature", "properties": {"easting": 590500.0, "northing": 184500.0, "gridsq": "X590Y184", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[591000.0, 184000.0], [590000.0, 184000.0], [590000.0, 185000.0], [591000.0, 185000.0], [591000.0, 184000.0]]]}}, {"id": "1051", "type": "Feature", "properties": {"easting": 593500.0, "northing": 184500.0, "gridsq": "X593Y184", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[594000.0, 184000.0], [593000.0, 184000.0], [593000.0, 185000.0], [594000.0, 185000.0], [594000.0, 184000.0]]]}}, {"id": "1052", "type": "Feature", "properties": {"easting": 415500.0, "northing": 185500.0, "gridsq": "X415Y185", "numresp": 73, "numpeople": 170.82, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 185000.0], [415000.0, 185000.0], [415000.0, 186000.0], [416000.0, 186000.0], [416000.0, 185000.0]]]}}, {"id": "1053", "type": "Feature", "properties": {"easting": 488500.0, "northing": 185500.0, "gridsq": "X488Y185", "numresp": 74, "numpeople": 173.16, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 185000.0], [488000.0, 185000.0], [488000.0, 186000.0], [489000.0, 186000.0], [489000.0, 185000.0]]]}}, {"id": "1054", "type": "Feature", "properties": {"easting": 511500.0, "northing": 185500.0, "gridsq": "X511Y185", "numresp": 66, "numpeople": 154.44, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 185000.0], [511000.0, 185000.0], [511000.0, 186000.0], [512000.0, 186000.0], [512000.0, 185000.0]]]}}, {"id": "1055", "type": "Feature", "properties": {"easting": 512500.0, "northing": 185500.0, "gridsq": "X512Y185", "numresp": 341, "numpeople": 797.94, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 185000.0], [512000.0, 185000.0], [512000.0, 186000.0], [513000.0, 186000.0], [513000.0, 185000.0]]]}}, {"id": "1056", "type": "Feature", "properties": {"easting": 516500.0, "northing": 185500.0, "gridsq": "X516Y185", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 185000.0], [516000.0, 185000.0], [516000.0, 186000.0], [517000.0, 186000.0], [517000.0, 185000.0]]]}}, {"id": "1057", "type": "Feature", "properties": {"easting": 517500.0, "northing": 185500.0, "gridsq": "X517Y185", "numresp": 341, "numpeople": 797.94, "numkeys": 5, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 185000.0], [517000.0, 185000.0], [517000.0, 186000.0], [518000.0, 186000.0], [518000.0, 185000.0]]]}}, {"id": "1058", "type": "Feature", "properties": {"easting": 518500.0, "northing": 185500.0, "gridsq": "X518Y185", "numresp": 160, "numpeople": 374.4, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 185000.0], [518000.0, 185000.0], [518000.0, 186000.0], [519000.0, 186000.0], [519000.0, 185000.0]]]}}, {"id": "1059", "type": "Feature", "properties": {"easting": 521500.0, "northing": 185500.0, "gridsq": "X521Y185", "numresp": 163, "numpeople": 381.42, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 185000.0], [521000.0, 185000.0], [521000.0, 186000.0], [522000.0, 186000.0], [522000.0, 185000.0]]]}}, {"id": "1060", "type": "Feature", "properties": {"easting": 522500.0, "northing": 185500.0, "gridsq": "X522Y185", "numresp": 344, "numpeople": 804.96, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 185000.0], [522000.0, 185000.0], [522000.0, 186000.0], [523000.0, 186000.0], [523000.0, 185000.0]]]}}, {"id": "1061", "type": "Feature", "properties": {"easting": 523500.0, "northing": 185500.0, "gridsq": "X523Y185", "numresp": 104, "numpeople": 243.36, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 185000.0], [523000.0, 185000.0], [523000.0, 186000.0], [524000.0, 186000.0], [524000.0, 185000.0]]]}}, {"id": "1062", "type": "Feature", "properties": {"easting": 524500.0, "northing": 185500.0, "gridsq": "X524Y185", "numresp": 163, "numpeople": 381.42, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 185000.0], [524000.0, 185000.0], [524000.0, 186000.0], [525000.0, 186000.0], [525000.0, 185000.0]]]}}, {"id": "1063", "type": "Feature", "properties": {"easting": 528500.0, "northing": 185500.0, "gridsq": "X528Y185", "numresp": 243, "numpeople": 568.62, "numkeys": 1, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 185000.0], [528000.0, 185000.0], [528000.0, 186000.0], [529000.0, 186000.0], [529000.0, 185000.0]]]}}, {"id": "1064", "type": "Feature", "properties": {"easting": 529500.0, "northing": 185500.0, "gridsq": "X529Y185", "numresp": 382, "numpeople": 893.88, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 185000.0], [529000.0, 185000.0], [529000.0, 186000.0], [530000.0, 186000.0], [530000.0, 185000.0]]]}}, {"id": "1065", "type": "Feature", "properties": {"easting": 530500.0, "northing": 185500.0, "gridsq": "X530Y185", "numresp": 625, "numpeople": 1462.5, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 185000.0], [530000.0, 185000.0], [530000.0, 186000.0], [531000.0, 186000.0], [531000.0, 185000.0]]]}}, {"id": "1066", "type": "Feature", "properties": {"easting": 531500.0, "northing": 185500.0, "gridsq": "X531Y185", "numresp": 381, "numpeople": 891.54, "numkeys": 7, "numnonresp": 77, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 185000.0], [531000.0, 185000.0], [531000.0, 186000.0], [532000.0, 186000.0], [532000.0, 185000.0]]]}}, {"id": "1067", "type": "Feature", "properties": {"easting": 532500.0, "northing": 185500.0, "gridsq": "X532Y185", "numresp": 402, "numpeople": 940.68, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 185000.0], [532000.0, 185000.0], [532000.0, 186000.0], [533000.0, 186000.0], [533000.0, 185000.0]]]}}, {"id": "1068", "type": "Feature", "properties": {"easting": 533500.0, "northing": 185500.0, "gridsq": "X533Y185", "numresp": 472, "numpeople": 1104.48, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 185000.0], [533000.0, 185000.0], [533000.0, 186000.0], [534000.0, 186000.0], [534000.0, 185000.0]]]}}, {"id": "1069", "type": "Feature", "properties": {"easting": 534500.0, "northing": 185500.0, "gridsq": "X534Y185", "numresp": 351, "numpeople": 821.34, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 185000.0], [534000.0, 185000.0], [534000.0, 186000.0], [535000.0, 186000.0], [535000.0, 185000.0]]]}}, {"id": "1070", "type": "Feature", "properties": {"easting": 535500.0, "northing": 185500.0, "gridsq": "X535Y185", "numresp": 130, "numpeople": 304.2, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 185000.0], [535000.0, 185000.0], [535000.0, 186000.0], [536000.0, 186000.0], [536000.0, 185000.0]]]}}, {"id": "1071", "type": "Feature", "properties": {"easting": 538500.0, "northing": 185500.0, "gridsq": "X538Y185", "numresp": 106, "numpeople": 248.04, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 185000.0], [538000.0, 185000.0], [538000.0, 186000.0], [539000.0, 186000.0], [539000.0, 185000.0]]]}}, {"id": "1072", "type": "Feature", "properties": {"easting": 549500.0, "northing": 185500.0, "gridsq": "X549Y185", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 185000.0], [549000.0, 185000.0], [549000.0, 186000.0], [550000.0, 186000.0], [550000.0, 185000.0]]]}}, {"id": "1073", "type": "Feature", "properties": {"easting": 552500.0, "northing": 185500.0, "gridsq": "X552Y185", "numresp": 166, "numpeople": 388.44, "numkeys": 0, "numnonresp": 55, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[553000.0, 185000.0], [552000.0, 185000.0], [552000.0, 186000.0], [553000.0, 186000.0], [553000.0, 185000.0]]]}}, {"id": "1074", "type": "Feature", "properties": {"easting": 588500.0, "northing": 185500.0, "gridsq": "X588Y185", "numresp": 121, "numpeople": 283.14, "numkeys": 1, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[589000.0, 185000.0], [588000.0, 185000.0], [588000.0, 186000.0], [589000.0, 186000.0], [589000.0, 185000.0]]]}}, {"id": "1075", "type": "Feature", "properties": {"easting": 589500.0, "northing": 185500.0, "gridsq": "X589Y185", "numresp": 305, "numpeople": 713.7, "numkeys": 2, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[590000.0, 185000.0], [589000.0, 185000.0], [589000.0, 186000.0], [590000.0, 186000.0], [590000.0, 185000.0]]]}}, {"id": "1076", "type": "Feature", "properties": {"easting": 484500.0, "northing": 186500.0, "gridsq": "X484Y186", "numresp": 151, "numpeople": 353.34, "numkeys": 3, "numnonresp": 63, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 186000.0], [484000.0, 186000.0], [484000.0, 187000.0], [485000.0, 187000.0], [485000.0, 186000.0]]]}}, {"id": "1077", "type": "Feature", "properties": {"easting": 485500.0, "northing": 186500.0, "gridsq": "X485Y186", "numresp": 126, "numpeople": 294.84, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 186000.0], [485000.0, 186000.0], [485000.0, 187000.0], [486000.0, 187000.0], [486000.0, 186000.0]]]}}, {"id": "1078", "type": "Feature", "properties": {"easting": 507500.0, "northing": 186500.0, "gridsq": "X507Y186", "numresp": 71, "numpeople": 166.14, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 186000.0], [507000.0, 186000.0], [507000.0, 187000.0], [508000.0, 187000.0], [508000.0, 186000.0]]]}}, {"id": "1079", "type": "Feature", "properties": {"easting": 513500.0, "northing": 186500.0, "gridsq": "X513Y186", "numresp": 182, "numpeople": 425.88, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 186000.0], [513000.0, 186000.0], [513000.0, 187000.0], [514000.0, 187000.0], [514000.0, 186000.0]]]}}, {"id": "1080", "type": "Feature", "properties": {"easting": 514500.0, "northing": 186500.0, "gridsq": "X514Y186", "numresp": 317, "numpeople": 741.78, "numkeys": 1, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 186000.0], [514000.0, 186000.0], [514000.0, 187000.0], [515000.0, 187000.0], [515000.0, 186000.0]]]}}, {"id": "1081", "type": "Feature", "properties": {"easting": 517500.0, "northing": 186500.0, "gridsq": "X517Y186", "numresp": 103, "numpeople": 241.02, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 186000.0], [517000.0, 186000.0], [517000.0, 187000.0], [518000.0, 187000.0], [518000.0, 186000.0]]]}}, {"id": "1082", "type": "Feature", "properties": {"easting": 518500.0, "northing": 186500.0, "gridsq": "X518Y186", "numresp": 237, "numpeople": 554.58, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 186000.0], [518000.0, 186000.0], [518000.0, 187000.0], [519000.0, 187000.0], [519000.0, 186000.0]]]}}, {"id": "1083", "type": "Feature", "properties": {"easting": 519500.0, "northing": 186500.0, "gridsq": "X519Y186", "numresp": 45, "numpeople": 105.3, "numkeys": 3, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 186000.0], [519000.0, 186000.0], [519000.0, 187000.0], [520000.0, 187000.0], [520000.0, 186000.0]]]}}, {"id": "1084", "type": "Feature", "properties": {"easting": 520500.0, "northing": 186500.0, "gridsq": "X520Y186", "numresp": 183, "numpeople": 428.22, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 186000.0], [520000.0, 186000.0], [520000.0, 187000.0], [521000.0, 187000.0], [521000.0, 186000.0]]]}}, {"id": "1085", "type": "Feature", "properties": {"easting": 521500.0, "northing": 186500.0, "gridsq": "X521Y186", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 186000.0], [521000.0, 186000.0], [521000.0, 187000.0], [522000.0, 187000.0], [522000.0, 186000.0]]]}}, {"id": "1086", "type": "Feature", "properties": {"easting": 524500.0, "northing": 186500.0, "gridsq": "X524Y186", "numresp": 159, "numpeople": 372.06, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 186000.0], [524000.0, 186000.0], [524000.0, 187000.0], [525000.0, 187000.0], [525000.0, 186000.0]]]}}, {"id": "1087", "type": "Feature", "properties": {"easting": 528500.0, "northing": 186500.0, "gridsq": "X528Y186", "numresp": 256, "numpeople": 599.04, "numkeys": 4, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 186000.0], [528000.0, 186000.0], [528000.0, 187000.0], [529000.0, 187000.0], [529000.0, 186000.0]]]}}, {"id": "1088", "type": "Feature", "properties": {"easting": 529500.0, "northing": 186500.0, "gridsq": "X529Y186", "numresp": 191, "numpeople": 446.94, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 186000.0], [529000.0, 186000.0], [529000.0, 187000.0], [530000.0, 187000.0], [530000.0, 186000.0]]]}}, {"id": "1089", "type": "Feature", "properties": {"easting": 530500.0, "northing": 186500.0, "gridsq": "X530Y186", "numresp": 341, "numpeople": 797.94, "numkeys": 4, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 186000.0], [530000.0, 186000.0], [530000.0, 187000.0], [531000.0, 187000.0], [531000.0, 186000.0]]]}}, {"id": "1090", "type": "Feature", "properties": {"easting": 531500.0, "northing": 186500.0, "gridsq": "X531Y186", "numresp": 684, "numpeople": 1600.56, "numkeys": 3, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 186000.0], [531000.0, 186000.0], [531000.0, 187000.0], [532000.0, 187000.0], [532000.0, 186000.0]]]}}, {"id": "1091", "type": "Feature", "properties": {"easting": 532500.0, "northing": 186500.0, "gridsq": "X532Y186", "numresp": 343, "numpeople": 802.62, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 186000.0], [532000.0, 186000.0], [532000.0, 187000.0], [533000.0, 187000.0], [533000.0, 186000.0]]]}}, {"id": "1092", "type": "Feature", "properties": {"easting": 533500.0, "northing": 186500.0, "gridsq": "X533Y186", "numresp": 260, "numpeople": 608.4, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 186000.0], [533000.0, 186000.0], [533000.0, 187000.0], [534000.0, 187000.0], [534000.0, 186000.0]]]}}, {"id": "1093", "type": "Feature", "properties": {"easting": 534500.0, "northing": 186500.0, "gridsq": "X534Y186", "numresp": 210, "numpeople": 491.4, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 186000.0], [534000.0, 186000.0], [534000.0, 187000.0], [535000.0, 187000.0], [535000.0, 186000.0]]]}}, {"id": "1094", "type": "Feature", "properties": {"easting": 537500.0, "northing": 186500.0, "gridsq": "X537Y186", "numresp": 141, "numpeople": 329.94, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 186000.0], [537000.0, 186000.0], [537000.0, 187000.0], [538000.0, 187000.0], [538000.0, 186000.0]]]}}, {"id": "1095", "type": "Feature", "properties": {"easting": 539500.0, "northing": 186500.0, "gridsq": "X539Y186", "numresp": 50, "numpeople": 117.0, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 186000.0], [539000.0, 186000.0], [539000.0, 187000.0], [540000.0, 187000.0], [540000.0, 186000.0]]]}}, {"id": "1096", "type": "Feature", "properties": {"easting": 549500.0, "northing": 186500.0, "gridsq": "X549Y186", "numresp": 86, "numpeople": 201.24, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 186000.0], [549000.0, 186000.0], [549000.0, 187000.0], [550000.0, 187000.0], [550000.0, 186000.0]]]}}, {"id": "1097", "type": "Feature", "properties": {"easting": 577500.0, "northing": 186500.0, "gridsq": "X577Y186", "numresp": 154, "numpeople": 360.36, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 186000.0], [577000.0, 186000.0], [577000.0, 187000.0], [578000.0, 187000.0], [578000.0, 186000.0]]]}}, {"id": "1098", "type": "Feature", "properties": {"easting": 578500.0, "northing": 186500.0, "gridsq": "X578Y186", "numresp": 105, "numpeople": 245.7, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[579000.0, 186000.0], [578000.0, 186000.0], [578000.0, 187000.0], [579000.0, 187000.0], [579000.0, 186000.0]]]}}, {"id": "1099", "type": "Feature", "properties": {"easting": 583500.0, "northing": 186500.0, "gridsq": "X583Y186", "numresp": 219, "numpeople": 512.46, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[584000.0, 186000.0], [583000.0, 186000.0], [583000.0, 187000.0], [584000.0, 187000.0], [584000.0, 186000.0]]]}}, {"id": "1100", "type": "Feature", "properties": {"easting": 584500.0, "northing": 186500.0, "gridsq": "X584Y186", "numresp": 217, "numpeople": 507.78, "numkeys": 4, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[585000.0, 186000.0], [584000.0, 186000.0], [584000.0, 187000.0], [585000.0, 187000.0], [585000.0, 186000.0]]]}}, {"id": "1101", "type": "Feature", "properties": {"easting": 585500.0, "northing": 186500.0, "gridsq": "X585Y186", "numresp": 50, "numpeople": 117.0, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[586000.0, 186000.0], [585000.0, 186000.0], [585000.0, 187000.0], [586000.0, 187000.0], [586000.0, 186000.0]]]}}, {"id": "1102", "type": "Feature", "properties": {"easting": 586500.0, "northing": 186500.0, "gridsq": "X586Y186", "numresp": 57, "numpeople": 133.38, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[587000.0, 186000.0], [586000.0, 186000.0], [586000.0, 187000.0], [587000.0, 187000.0], [587000.0, 186000.0]]]}}, {"id": "1103", "type": "Feature", "properties": {"easting": 587500.0, "northing": 186500.0, "gridsq": "X587Y186", "numresp": 84, "numpeople": 196.56, "numkeys": 0, "numnonresp": 72, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[588000.0, 186000.0], [587000.0, 186000.0], [587000.0, 187000.0], [588000.0, 187000.0], [588000.0, 186000.0]]]}}, {"id": "1104", "type": "Feature", "properties": {"easting": 589500.0, "northing": 186500.0, "gridsq": "X589Y186", "numresp": 124, "numpeople": 290.16, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[590000.0, 186000.0], [589000.0, 186000.0], [589000.0, 187000.0], [590000.0, 187000.0], [590000.0, 186000.0]]]}}, {"id": "1105", "type": "Feature", "properties": {"easting": 485500.0, "northing": 187500.0, "gridsq": "X485Y187", "numresp": 214, "numpeople": 500.76, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 187000.0], [485000.0, 187000.0], [485000.0, 188000.0], [486000.0, 188000.0], [486000.0, 187000.0]]]}}, {"id": "1106", "type": "Feature", "properties": {"easting": 508500.0, "northing": 187500.0, "gridsq": "X508Y187", "numresp": 103, "numpeople": 241.02, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 187000.0], [508000.0, 187000.0], [508000.0, 188000.0], [509000.0, 188000.0], [509000.0, 187000.0]]]}}, {"id": "1107", "type": "Feature", "properties": {"easting": 514500.0, "northing": 187500.0, "gridsq": "X514Y187", "numresp": 118, "numpeople": 276.12, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 187000.0], [514000.0, 187000.0], [514000.0, 188000.0], [515000.0, 188000.0], [515000.0, 187000.0]]]}}, {"id": "1108", "type": "Feature", "properties": {"easting": 517500.0, "northing": 187500.0, "gridsq": "X517Y187", "numresp": 142, "numpeople": 332.28, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 187000.0], [517000.0, 187000.0], [517000.0, 188000.0], [518000.0, 188000.0], [518000.0, 187000.0]]]}}, {"id": "1109", "type": "Feature", "properties": {"easting": 518500.0, "northing": 187500.0, "gridsq": "X518Y187", "numresp": 93, "numpeople": 217.62, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 187000.0], [518000.0, 187000.0], [518000.0, 188000.0], [519000.0, 188000.0], [519000.0, 187000.0]]]}}, {"id": "1110", "type": "Feature", "properties": {"easting": 523500.0, "northing": 187500.0, "gridsq": "X523Y187", "numresp": 148, "numpeople": 346.32, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 187000.0], [523000.0, 187000.0], [523000.0, 188000.0], [524000.0, 188000.0], [524000.0, 187000.0]]]}}, {"id": "1111", "type": "Feature", "properties": {"easting": 524500.0, "northing": 187500.0, "gridsq": "X524Y187", "numresp": 119, "numpeople": 278.46, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 187000.0], [524000.0, 187000.0], [524000.0, 188000.0], [525000.0, 188000.0], [525000.0, 187000.0]]]}}, {"id": "1112", "type": "Feature", "properties": {"easting": 528500.0, "northing": 187500.0, "gridsq": "X528Y187", "numresp": 129, "numpeople": 301.86, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 187000.0], [528000.0, 187000.0], [528000.0, 188000.0], [529000.0, 188000.0], [529000.0, 187000.0]]]}}, {"id": "1113", "type": "Feature", "properties": {"easting": 529500.0, "northing": 187500.0, "gridsq": "X529Y187", "numresp": 227, "numpeople": 531.18, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 187000.0], [529000.0, 187000.0], [529000.0, 188000.0], [530000.0, 188000.0], [530000.0, 187000.0]]]}}, {"id": "1114", "type": "Feature", "properties": {"easting": 530500.0, "northing": 187500.0, "gridsq": "X530Y187", "numresp": 292, "numpeople": 683.28, "numkeys": 2, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 187000.0], [530000.0, 187000.0], [530000.0, 188000.0], [531000.0, 188000.0], [531000.0, 187000.0]]]}}, {"id": "1115", "type": "Feature", "properties": {"easting": 533500.0, "northing": 187500.0, "gridsq": "X533Y187", "numresp": 187, "numpeople": 437.58, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 187000.0], [533000.0, 187000.0], [533000.0, 188000.0], [534000.0, 188000.0], [534000.0, 187000.0]]]}}, {"id": "1116", "type": "Feature", "properties": {"easting": 537500.0, "northing": 187500.0, "gridsq": "X537Y187", "numresp": 300, "numpeople": 702.0, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 187000.0], [537000.0, 187000.0], [537000.0, 188000.0], [538000.0, 188000.0], [538000.0, 187000.0]]]}}, {"id": "1117", "type": "Feature", "properties": {"easting": 539500.0, "northing": 187500.0, "gridsq": "X539Y187", "numresp": 219, "numpeople": 512.46, "numkeys": 5, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 187000.0], [539000.0, 187000.0], [539000.0, 188000.0], [540000.0, 188000.0], [540000.0, 187000.0]]]}}, {"id": "1118", "type": "Feature", "properties": {"easting": 545500.0, "northing": 187500.0, "gridsq": "X545Y187", "numresp": 172, "numpeople": 402.48, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 187000.0], [545000.0, 187000.0], [545000.0, 188000.0], [546000.0, 188000.0], [546000.0, 187000.0]]]}}, {"id": "1119", "type": "Feature", "properties": {"easting": 547500.0, "northing": 187500.0, "gridsq": "X547Y187", "numresp": 131, "numpeople": 306.54, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 187000.0], [547000.0, 187000.0], [547000.0, 188000.0], [548000.0, 188000.0], [548000.0, 187000.0]]]}}, {"id": "1120", "type": "Feature", "properties": {"easting": 551500.0, "northing": 187500.0, "gridsq": "X551Y187", "numresp": 132, "numpeople": 308.88, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 187000.0], [551000.0, 187000.0], [551000.0, 188000.0], [552000.0, 188000.0], [552000.0, 187000.0]]]}}, {"id": "1121", "type": "Feature", "properties": {"easting": 557500.0, "northing": 187500.0, "gridsq": "X557Y187", "numresp": 171, "numpeople": 400.14, "numkeys": 1, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[558000.0, 187000.0], [557000.0, 187000.0], [557000.0, 188000.0], [558000.0, 188000.0], [558000.0, 187000.0]]]}}, {"id": "1122", "type": "Feature", "properties": {"easting": 569500.0, "northing": 187500.0, "gridsq": "X569Y187", "numresp": 41, "numpeople": 95.94, "numkeys": 5, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[570000.0, 187000.0], [569000.0, 187000.0], [569000.0, 188000.0], [570000.0, 188000.0], [570000.0, 187000.0]]]}}, {"id": "1123", "type": "Feature", "properties": {"easting": 570500.0, "northing": 187500.0, "gridsq": "X570Y187", "numresp": 82, "numpeople": 191.88, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[571000.0, 187000.0], [570000.0, 187000.0], [570000.0, 188000.0], [571000.0, 188000.0], [571000.0, 187000.0]]]}}, {"id": "1124", "type": "Feature", "properties": {"easting": 571500.0, "northing": 187500.0, "gridsq": "X571Y187", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[572000.0, 187000.0], [571000.0, 187000.0], [571000.0, 188000.0], [572000.0, 188000.0], [572000.0, 187000.0]]]}}, {"id": "1125", "type": "Feature", "properties": {"easting": 572500.0, "northing": 187500.0, "gridsq": "X572Y187", "numresp": 227, "numpeople": 531.18, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[573000.0, 187000.0], [572000.0, 187000.0], [572000.0, 188000.0], [573000.0, 188000.0], [573000.0, 187000.0]]]}}, {"id": "1126", "type": "Feature", "properties": {"easting": 577500.0, "northing": 187500.0, "gridsq": "X577Y187", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 187000.0], [577000.0, 187000.0], [577000.0, 188000.0], [578000.0, 188000.0], [578000.0, 187000.0]]]}}, {"id": "1127", "type": "Feature", "properties": {"easting": 584500.0, "northing": 187500.0, "gridsq": "X584Y187", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[585000.0, 187000.0], [584000.0, 187000.0], [584000.0, 188000.0], [585000.0, 188000.0], [585000.0, 187000.0]]]}}, {"id": "1128", "type": "Feature", "properties": {"easting": 508500.0, "northing": 188500.0, "gridsq": "X508Y188", "numresp": 98, "numpeople": 229.32, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 188000.0], [508000.0, 188000.0], [508000.0, 189000.0], [509000.0, 189000.0], [509000.0, 188000.0]]]}}, {"id": "1129", "type": "Feature", "properties": {"easting": 513500.0, "northing": 188500.0, "gridsq": "X513Y188", "numresp": 293, "numpeople": 685.62, "numkeys": 3, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 188000.0], [513000.0, 188000.0], [513000.0, 189000.0], [514000.0, 189000.0], [514000.0, 188000.0]]]}}, {"id": "1130", "type": "Feature", "properties": {"easting": 515500.0, "northing": 188500.0, "gridsq": "X515Y188", "numresp": 124, "numpeople": 290.16, "numkeys": 2, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 188000.0], [515000.0, 188000.0], [515000.0, 189000.0], [516000.0, 189000.0], [516000.0, 188000.0]]]}}, {"id": "1131", "type": "Feature", "properties": {"easting": 516500.0, "northing": 188500.0, "gridsq": "X516Y188", "numresp": 97, "numpeople": 226.98, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 188000.0], [516000.0, 188000.0], [516000.0, 189000.0], [517000.0, 189000.0], [517000.0, 188000.0]]]}}, {"id": "1132", "type": "Feature", "properties": {"easting": 517500.0, "northing": 188500.0, "gridsq": "X517Y188", "numresp": 121, "numpeople": 283.14, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 188000.0], [517000.0, 188000.0], [517000.0, 189000.0], [518000.0, 189000.0], [518000.0, 188000.0]]]}}, {"id": "1133", "type": "Feature", "properties": {"easting": 518500.0, "northing": 188500.0, "gridsq": "X518Y188", "numresp": 123, "numpeople": 287.82, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 188000.0], [518000.0, 188000.0], [518000.0, 189000.0], [519000.0, 189000.0], [519000.0, 188000.0]]]}}, {"id": "1134", "type": "Feature", "properties": {"easting": 523500.0, "northing": 188500.0, "gridsq": "X523Y188", "numresp": 126, "numpeople": 294.84, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 188000.0], [523000.0, 188000.0], [523000.0, 189000.0], [524000.0, 189000.0], [524000.0, 188000.0]]]}}, {"id": "1135", "type": "Feature", "properties": {"easting": 524500.0, "northing": 188500.0, "gridsq": "X524Y188", "numresp": 65, "numpeople": 152.1, "numkeys": 3, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 188000.0], [524000.0, 188000.0], [524000.0, 189000.0], [525000.0, 189000.0], [525000.0, 188000.0]]]}}, {"id": "1136", "type": "Feature", "properties": {"easting": 526500.0, "northing": 188500.0, "gridsq": "X526Y188", "numresp": 165, "numpeople": 386.1, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 188000.0], [526000.0, 188000.0], [526000.0, 189000.0], [527000.0, 189000.0], [527000.0, 188000.0]]]}}, {"id": "1137", "type": "Feature", "properties": {"easting": 529500.0, "northing": 188500.0, "gridsq": "X529Y188", "numresp": 162, "numpeople": 379.08, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 188000.0], [529000.0, 188000.0], [529000.0, 189000.0], [530000.0, 189000.0], [530000.0, 188000.0]]]}}, {"id": "1138", "type": "Feature", "properties": {"easting": 530500.0, "northing": 188500.0, "gridsq": "X530Y188", "numresp": 291, "numpeople": 680.94, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 188000.0], [530000.0, 188000.0], [530000.0, 189000.0], [531000.0, 189000.0], [531000.0, 188000.0]]]}}, {"id": "1139", "type": "Feature", "properties": {"easting": 531500.0, "northing": 188500.0, "gridsq": "X531Y188", "numresp": 309, "numpeople": 723.06, "numkeys": 4, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 188000.0], [531000.0, 188000.0], [531000.0, 189000.0], [532000.0, 189000.0], [532000.0, 188000.0]]]}}, {"id": "1140", "type": "Feature", "properties": {"easting": 532500.0, "northing": 188500.0, "gridsq": "X532Y188", "numresp": 324, "numpeople": 758.16, "numkeys": 3, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 188000.0], [532000.0, 188000.0], [532000.0, 189000.0], [533000.0, 189000.0], [533000.0, 188000.0]]]}}, {"id": "1141", "type": "Feature", "properties": {"easting": 533500.0, "northing": 188500.0, "gridsq": "X533Y188", "numresp": 750, "numpeople": 1755.0, "numkeys": 1, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 188000.0], [533000.0, 188000.0], [533000.0, 189000.0], [534000.0, 189000.0], [534000.0, 188000.0]]]}}, {"id": "1142", "type": "Feature", "properties": {"easting": 534500.0, "northing": 188500.0, "gridsq": "X534Y188", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 188000.0], [534000.0, 188000.0], [534000.0, 189000.0], [535000.0, 189000.0], [535000.0, 188000.0]]]}}, {"id": "1143", "type": "Feature", "properties": {"easting": 536500.0, "northing": 188500.0, "gridsq": "X536Y188", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 188000.0], [536000.0, 188000.0], [536000.0, 189000.0], [537000.0, 189000.0], [537000.0, 188000.0]]]}}, {"id": "1144", "type": "Feature", "properties": {"easting": 538500.0, "northing": 188500.0, "gridsq": "X538Y188", "numresp": 178, "numpeople": 416.52, "numkeys": 5, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 188000.0], [538000.0, 188000.0], [538000.0, 189000.0], [539000.0, 189000.0], [539000.0, 188000.0]]]}}, {"id": "1145", "type": "Feature", "properties": {"easting": 539500.0, "northing": 188500.0, "gridsq": "X539Y188", "numresp": 58, "numpeople": 135.72, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 188000.0], [539000.0, 188000.0], [539000.0, 189000.0], [540000.0, 189000.0], [540000.0, 188000.0]]]}}, {"id": "1146", "type": "Feature", "properties": {"easting": 540500.0, "northing": 188500.0, "gridsq": "X540Y188", "numresp": 108, "numpeople": 252.72, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 188000.0], [540000.0, 188000.0], [540000.0, 189000.0], [541000.0, 189000.0], [541000.0, 188000.0]]]}}, {"id": "1147", "type": "Feature", "properties": {"easting": 541500.0, "northing": 188500.0, "gridsq": "X541Y188", "numresp": 40, "numpeople": 93.6, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 188000.0], [541000.0, 188000.0], [541000.0, 189000.0], [542000.0, 189000.0], [542000.0, 188000.0]]]}}, {"id": "1148", "type": "Feature", "properties": {"easting": 547500.0, "northing": 188500.0, "gridsq": "X547Y188", "numresp": 49, "numpeople": 114.66, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 188000.0], [547000.0, 188000.0], [547000.0, 189000.0], [548000.0, 189000.0], [548000.0, 188000.0]]]}}, {"id": "1149", "type": "Feature", "properties": {"easting": 550500.0, "northing": 188500.0, "gridsq": "X550Y188", "numresp": 118, "numpeople": 276.12, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[551000.0, 188000.0], [550000.0, 188000.0], [550000.0, 189000.0], [551000.0, 189000.0], [551000.0, 188000.0]]]}}, {"id": "1150", "type": "Feature", "properties": {"easting": 551500.0, "northing": 188500.0, "gridsq": "X551Y188", "numresp": 346, "numpeople": 809.64, "numkeys": 4, "numnonresp": 196, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 188000.0], [551000.0, 188000.0], [551000.0, 189000.0], [552000.0, 189000.0], [552000.0, 188000.0]]]}}, {"id": "1151", "type": "Feature", "properties": {"easting": 562500.0, "northing": 188500.0, "gridsq": "X562Y188", "numresp": 175, "numpeople": 409.5, "numkeys": 3, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 188000.0], [562000.0, 188000.0], [562000.0, 189000.0], [563000.0, 189000.0], [563000.0, 188000.0]]]}}, {"id": "1152", "type": "Feature", "properties": {"easting": 568500.0, "northing": 188500.0, "gridsq": "X568Y188", "numresp": 150, "numpeople": 351.0, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[569000.0, 188000.0], [568000.0, 188000.0], [568000.0, 189000.0], [569000.0, 189000.0], [569000.0, 188000.0]]]}}, {"id": "1153", "type": "Feature", "properties": {"easting": 569500.0, "northing": 188500.0, "gridsq": "X569Y188", "numresp": 447, "numpeople": 1045.98, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[570000.0, 188000.0], [569000.0, 188000.0], [569000.0, 189000.0], [570000.0, 189000.0], [570000.0, 188000.0]]]}}, {"id": "1154", "type": "Feature", "properties": {"easting": 570500.0, "northing": 188500.0, "gridsq": "X570Y188", "numresp": 158, "numpeople": 369.72, "numkeys": 1, "numnonresp": 103, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[571000.0, 188000.0], [570000.0, 188000.0], [570000.0, 189000.0], [571000.0, 189000.0], [571000.0, 188000.0]]]}}, {"id": "1155", "type": "Feature", "properties": {"easting": 571500.0, "northing": 188500.0, "gridsq": "X571Y188", "numresp": 145, "numpeople": 339.3, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[572000.0, 188000.0], [571000.0, 188000.0], [571000.0, 189000.0], [572000.0, 189000.0], [572000.0, 188000.0]]]}}, {"id": "1156", "type": "Feature", "properties": {"easting": 576500.0, "northing": 188500.0, "gridsq": "X576Y188", "numresp": 67, "numpeople": 156.78, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 188000.0], [576000.0, 188000.0], [576000.0, 189000.0], [577000.0, 189000.0], [577000.0, 188000.0]]]}}, {"id": "1157", "type": "Feature", "properties": {"easting": 577500.0, "northing": 188500.0, "gridsq": "X577Y188", "numresp": 145, "numpeople": 339.3, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 188000.0], [577000.0, 188000.0], [577000.0, 189000.0], [578000.0, 189000.0], [578000.0, 188000.0]]]}}, {"id": "1158", "type": "Feature", "properties": {"easting": 580500.0, "northing": 188500.0, "gridsq": "X580Y188", "numresp": 107, "numpeople": 250.38, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[581000.0, 188000.0], [580000.0, 188000.0], [580000.0, 189000.0], [581000.0, 189000.0], [581000.0, 188000.0]]]}}, {"id": "1159", "type": "Feature", "properties": {"easting": 583500.0, "northing": 188500.0, "gridsq": "X583Y188", "numresp": 105, "numpeople": 245.7, "numkeys": 0, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[584000.0, 188000.0], [583000.0, 188000.0], [583000.0, 189000.0], [584000.0, 189000.0], [584000.0, 188000.0]]]}}, {"id": "1160", "type": "Feature", "properties": {"easting": 584500.0, "northing": 188500.0, "gridsq": "X584Y188", "numresp": 130, "numpeople": 304.2, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[585000.0, 188000.0], [584000.0, 188000.0], [584000.0, 189000.0], [585000.0, 189000.0], [585000.0, 188000.0]]]}}, {"id": "1161", "type": "Feature", "properties": {"easting": 585500.0, "northing": 188500.0, "gridsq": "X585Y188", "numresp": 121, "numpeople": 283.14, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[586000.0, 188000.0], [585000.0, 188000.0], [585000.0, 189000.0], [586000.0, 189000.0], [586000.0, 188000.0]]]}}, {"id": "1162", "type": "Feature", "properties": {"easting": 586500.0, "northing": 188500.0, "gridsq": "X586Y188", "numresp": 104, "numpeople": 243.36, "numkeys": 1, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[587000.0, 188000.0], [586000.0, 188000.0], [586000.0, 189000.0], [587000.0, 189000.0], [587000.0, 188000.0]]]}}, {"id": "1163", "type": "Feature", "properties": {"easting": 587500.0, "northing": 188500.0, "gridsq": "X587Y188", "numresp": 186, "numpeople": 435.24, "numkeys": 0, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[588000.0, 188000.0], [587000.0, 188000.0], [587000.0, 189000.0], [588000.0, 189000.0], [588000.0, 188000.0]]]}}, {"id": "1164", "type": "Feature", "properties": {"easting": 363500.0, "northing": 189500.0, "gridsq": "X363Y189", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[364000.0, 189000.0], [363000.0, 189000.0], [363000.0, 190000.0], [364000.0, 190000.0], [364000.0, 189000.0]]]}}, {"id": "1165", "type": "Feature", "properties": {"easting": 513500.0, "northing": 189500.0, "gridsq": "X513Y189", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 189000.0], [513000.0, 189000.0], [513000.0, 190000.0], [514000.0, 190000.0], [514000.0, 189000.0]]]}}, {"id": "1166", "type": "Feature", "properties": {"easting": 515500.0, "northing": 189500.0, "gridsq": "X515Y189", "numresp": 196, "numpeople": 458.64, "numkeys": 1, "numnonresp": 114, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 189000.0], [515000.0, 189000.0], [515000.0, 190000.0], [516000.0, 190000.0], [516000.0, 189000.0]]]}}, {"id": "1167", "type": "Feature", "properties": {"easting": 516500.0, "northing": 189500.0, "gridsq": "X516Y189", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 189000.0], [516000.0, 189000.0], [516000.0, 190000.0], [517000.0, 190000.0], [517000.0, 189000.0]]]}}, {"id": "1168", "type": "Feature", "properties": {"easting": 517500.0, "northing": 189500.0, "gridsq": "X517Y189", "numresp": 154, "numpeople": 360.36, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 189000.0], [517000.0, 189000.0], [517000.0, 190000.0], [518000.0, 190000.0], [518000.0, 189000.0]]]}}, {"id": "1169", "type": "Feature", "properties": {"easting": 519500.0, "northing": 189500.0, "gridsq": "X519Y189", "numresp": 103, "numpeople": 241.02, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 189000.0], [519000.0, 189000.0], [519000.0, 190000.0], [520000.0, 190000.0], [520000.0, 189000.0]]]}}, {"id": "1170", "type": "Feature", "properties": {"easting": 520500.0, "northing": 189500.0, "gridsq": "X520Y189", "numresp": 58, "numpeople": 135.72, "numkeys": 3, "numnonresp": 64, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 189000.0], [520000.0, 189000.0], [520000.0, 190000.0], [521000.0, 190000.0], [521000.0, 189000.0]]]}}, {"id": "1171", "type": "Feature", "properties": {"easting": 523500.0, "northing": 189500.0, "gridsq": "X523Y189", "numresp": 145, "numpeople": 339.3, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 189000.0], [523000.0, 189000.0], [523000.0, 190000.0], [524000.0, 190000.0], [524000.0, 189000.0]]]}}, {"id": "1172", "type": "Feature", "properties": {"easting": 524500.0, "northing": 189500.0, "gridsq": "X524Y189", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 189000.0], [524000.0, 189000.0], [524000.0, 190000.0], [525000.0, 190000.0], [525000.0, 189000.0]]]}}, {"id": "1173", "type": "Feature", "properties": {"easting": 526500.0, "northing": 189500.0, "gridsq": "X526Y189", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 189000.0], [526000.0, 189000.0], [526000.0, 190000.0], [527000.0, 190000.0], [527000.0, 189000.0]]]}}, {"id": "1174", "type": "Feature", "properties": {"easting": 529500.0, "northing": 189500.0, "gridsq": "X529Y189", "numresp": 184, "numpeople": 430.56, "numkeys": 0, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 189000.0], [529000.0, 189000.0], [529000.0, 190000.0], [530000.0, 190000.0], [530000.0, 189000.0]]]}}, {"id": "1175", "type": "Feature", "properties": {"easting": 530500.0, "northing": 189500.0, "gridsq": "X530Y189", "numresp": 605, "numpeople": 1415.7, "numkeys": 3, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 189000.0], [530000.0, 189000.0], [530000.0, 190000.0], [531000.0, 190000.0], [531000.0, 189000.0]]]}}, {"id": "1176", "type": "Feature", "properties": {"easting": 531500.0, "northing": 189500.0, "gridsq": "X531Y189", "numresp": 292, "numpeople": 683.28, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 189000.0], [531000.0, 189000.0], [531000.0, 190000.0], [532000.0, 190000.0], [532000.0, 189000.0]]]}}, {"id": "1177", "type": "Feature", "properties": {"easting": 533500.0, "northing": 189500.0, "gridsq": "X533Y189", "numresp": 151, "numpeople": 353.34, "numkeys": 2, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 189000.0], [533000.0, 189000.0], [533000.0, 190000.0], [534000.0, 190000.0], [534000.0, 189000.0]]]}}, {"id": "1178", "type": "Feature", "properties": {"easting": 534500.0, "northing": 189500.0, "gridsq": "X534Y189", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 189000.0], [534000.0, 189000.0], [534000.0, 190000.0], [535000.0, 190000.0], [535000.0, 189000.0]]]}}, {"id": "1179", "type": "Feature", "properties": {"easting": 536500.0, "northing": 189500.0, "gridsq": "X536Y189", "numresp": 86, "numpeople": 201.24, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 189000.0], [536000.0, 189000.0], [536000.0, 190000.0], [537000.0, 190000.0], [537000.0, 189000.0]]]}}, {"id": "1180", "type": "Feature", "properties": {"easting": 537500.0, "northing": 189500.0, "gridsq": "X537Y189", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 189000.0], [537000.0, 189000.0], [537000.0, 190000.0], [538000.0, 190000.0], [538000.0, 189000.0]]]}}, {"id": "1181", "type": "Feature", "properties": {"easting": 538500.0, "northing": 189500.0, "gridsq": "X538Y189", "numresp": 120, "numpeople": 280.8, "numkeys": 5, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 189000.0], [538000.0, 189000.0], [538000.0, 190000.0], [539000.0, 190000.0], [539000.0, 189000.0]]]}}, {"id": "1182", "type": "Feature", "properties": {"easting": 541500.0, "northing": 189500.0, "gridsq": "X541Y189", "numresp": 93, "numpeople": 217.62, "numkeys": 5, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 189000.0], [541000.0, 189000.0], [541000.0, 190000.0], [542000.0, 190000.0], [542000.0, 189000.0]]]}}, {"id": "1183", "type": "Feature", "properties": {"easting": 542500.0, "northing": 189500.0, "gridsq": "X542Y189", "numresp": 114, "numpeople": 266.76, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 189000.0], [542000.0, 189000.0], [542000.0, 190000.0], [543000.0, 190000.0], [543000.0, 189000.0]]]}}, {"id": "1184", "type": "Feature", "properties": {"easting": 549500.0, "northing": 189500.0, "gridsq": "X549Y189", "numresp": 130, "numpeople": 304.2, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 189000.0], [549000.0, 189000.0], [549000.0, 190000.0], [550000.0, 190000.0], [550000.0, 189000.0]]]}}, {"id": "1185", "type": "Feature", "properties": {"easting": 550500.0, "northing": 189500.0, "gridsq": "X550Y189", "numresp": 132, "numpeople": 308.88, "numkeys": 1, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[551000.0, 189000.0], [550000.0, 189000.0], [550000.0, 190000.0], [551000.0, 190000.0], [551000.0, 189000.0]]]}}, {"id": "1186", "type": "Feature", "properties": {"easting": 553500.0, "northing": 189500.0, "gridsq": "X553Y189", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 189000.0], [553000.0, 189000.0], [553000.0, 190000.0], [554000.0, 190000.0], [554000.0, 189000.0]]]}}, {"id": "1187", "type": "Feature", "properties": {"easting": 566500.0, "northing": 189500.0, "gridsq": "X566Y189", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 60, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[567000.0, 189000.0], [566000.0, 189000.0], [566000.0, 190000.0], [567000.0, 190000.0], [567000.0, 189000.0]]]}}, {"id": "1188", "type": "Feature", "properties": {"easting": 568500.0, "northing": 189500.0, "gridsq": "X568Y189", "numresp": 119, "numpeople": 278.46, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[569000.0, 189000.0], [568000.0, 189000.0], [568000.0, 190000.0], [569000.0, 190000.0], [569000.0, 189000.0]]]}}, {"id": "1189", "type": "Feature", "properties": {"easting": 570500.0, "northing": 189500.0, "gridsq": "X570Y189", "numresp": 124, "numpeople": 290.16, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[571000.0, 189000.0], [570000.0, 189000.0], [570000.0, 190000.0], [571000.0, 190000.0], [571000.0, 189000.0]]]}}, {"id": "1190", "type": "Feature", "properties": {"easting": 572500.0, "northing": 189500.0, "gridsq": "X572Y189", "numresp": 349, "numpeople": 816.66, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[573000.0, 189000.0], [572000.0, 189000.0], [572000.0, 190000.0], [573000.0, 190000.0], [573000.0, 189000.0]]]}}, {"id": "1191", "type": "Feature", "properties": {"easting": 573500.0, "northing": 189500.0, "gridsq": "X573Y189", "numresp": 242, "numpeople": 566.28, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[574000.0, 189000.0], [573000.0, 189000.0], [573000.0, 190000.0], [574000.0, 190000.0], [574000.0, 189000.0]]]}}, {"id": "1192", "type": "Feature", "properties": {"easting": 574500.0, "northing": 189500.0, "gridsq": "X574Y189", "numresp": 193, "numpeople": 451.62, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 189000.0], [574000.0, 189000.0], [574000.0, 190000.0], [575000.0, 190000.0], [575000.0, 189000.0]]]}}, {"id": "1193", "type": "Feature", "properties": {"easting": 576500.0, "northing": 189500.0, "gridsq": "X576Y189", "numresp": 90, "numpeople": 210.6, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[577000.0, 189000.0], [576000.0, 189000.0], [576000.0, 190000.0], [577000.0, 190000.0], [577000.0, 189000.0]]]}}, {"id": "1194", "type": "Feature", "properties": {"easting": 580500.0, "northing": 189500.0, "gridsq": "X580Y189", "numresp": 4, "numpeople": 9.36, "numkeys": 0, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[581000.0, 189000.0], [580000.0, 189000.0], [580000.0, 190000.0], [581000.0, 190000.0], [581000.0, 189000.0]]]}}, {"id": "1195", "type": "Feature", "properties": {"easting": 582500.0, "northing": 189500.0, "gridsq": "X582Y189", "numresp": 169, "numpeople": 395.46, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[583000.0, 189000.0], [582000.0, 189000.0], [582000.0, 190000.0], [583000.0, 190000.0], [583000.0, 189000.0]]]}}, {"id": "1196", "type": "Feature", "properties": {"easting": 587500.0, "northing": 189500.0, "gridsq": "X587Y189", "numresp": 114, "numpeople": 266.76, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[588000.0, 189000.0], [587000.0, 189000.0], [587000.0, 190000.0], [588000.0, 190000.0], [588000.0, 189000.0]]]}}, {"id": "1197", "type": "Feature", "properties": {"easting": 489500.0, "northing": 190500.0, "gridsq": "X489Y190", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 190000.0], [489000.0, 190000.0], [489000.0, 191000.0], [490000.0, 191000.0], [490000.0, 190000.0]]]}}, {"id": "1198", "type": "Feature", "properties": {"easting": 490500.0, "northing": 190500.0, "gridsq": "X490Y190", "numresp": 135, "numpeople": 315.9, "numkeys": 1, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[491000.0, 190000.0], [490000.0, 190000.0], [490000.0, 191000.0], [491000.0, 191000.0], [491000.0, 190000.0]]]}}, {"id": "1199", "type": "Feature", "properties": {"easting": 500500.0, "northing": 190500.0, "gridsq": "X500Y190", "numresp": 158, "numpeople": 369.72, "numkeys": 3, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[501000.0, 190000.0], [500000.0, 190000.0], [500000.0, 191000.0], [501000.0, 191000.0], [501000.0, 190000.0]]]}}, {"id": "1200", "type": "Feature", "properties": {"easting": 505500.0, "northing": 190500.0, "gridsq": "X505Y190", "numresp": 3, "numpeople": 7.02, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 190000.0], [505000.0, 190000.0], [505000.0, 191000.0], [506000.0, 191000.0], [506000.0, 190000.0]]]}}, {"id": "1201", "type": "Feature", "properties": {"easting": 509500.0, "northing": 190500.0, "gridsq": "X509Y190", "numresp": 114, "numpeople": 266.76, "numkeys": 0, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[510000.0, 190000.0], [509000.0, 190000.0], [509000.0, 191000.0], [510000.0, 191000.0], [510000.0, 190000.0]]]}}, {"id": "1202", "type": "Feature", "properties": {"easting": 510500.0, "northing": 190500.0, "gridsq": "X510Y190", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 190000.0], [510000.0, 190000.0], [510000.0, 191000.0], [511000.0, 191000.0], [511000.0, 190000.0]]]}}, {"id": "1203", "type": "Feature", "properties": {"easting": 514500.0, "northing": 190500.0, "gridsq": "X514Y190", "numresp": 173, "numpeople": 404.82, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 190000.0], [514000.0, 190000.0], [514000.0, 191000.0], [515000.0, 191000.0], [515000.0, 190000.0]]]}}, {"id": "1204", "type": "Feature", "properties": {"easting": 515500.0, "northing": 190500.0, "gridsq": "X515Y190", "numresp": 178, "numpeople": 416.52, "numkeys": 0, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 190000.0], [515000.0, 190000.0], [515000.0, 191000.0], [516000.0, 191000.0], [516000.0, 190000.0]]]}}, {"id": "1205", "type": "Feature", "properties": {"easting": 519500.0, "northing": 190500.0, "gridsq": "X519Y190", "numresp": 151, "numpeople": 353.34, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 190000.0], [519000.0, 190000.0], [519000.0, 191000.0], [520000.0, 191000.0], [520000.0, 190000.0]]]}}, {"id": "1206", "type": "Feature", "properties": {"easting": 520500.0, "northing": 190500.0, "gridsq": "X520Y190", "numresp": 240, "numpeople": 561.6, "numkeys": 2, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 190000.0], [520000.0, 190000.0], [520000.0, 191000.0], [521000.0, 191000.0], [521000.0, 190000.0]]]}}, {"id": "1207", "type": "Feature", "properties": {"easting": 521500.0, "northing": 190500.0, "gridsq": "X521Y190", "numresp": 345, "numpeople": 807.3, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 190000.0], [521000.0, 190000.0], [521000.0, 191000.0], [522000.0, 191000.0], [522000.0, 190000.0]]]}}, {"id": "1208", "type": "Feature", "properties": {"easting": 522500.0, "northing": 190500.0, "gridsq": "X522Y190", "numresp": 136, "numpeople": 318.24, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 190000.0], [522000.0, 190000.0], [522000.0, 191000.0], [523000.0, 191000.0], [523000.0, 190000.0]]]}}, {"id": "1209", "type": "Feature", "properties": {"easting": 524500.0, "northing": 190500.0, "gridsq": "X524Y190", "numresp": 138, "numpeople": 322.92, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 190000.0], [524000.0, 190000.0], [524000.0, 191000.0], [525000.0, 191000.0], [525000.0, 190000.0]]]}}, {"id": "1210", "type": "Feature", "properties": {"easting": 526500.0, "northing": 190500.0, "gridsq": "X526Y190", "numresp": 206, "numpeople": 482.04, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 190000.0], [526000.0, 190000.0], [526000.0, 191000.0], [527000.0, 191000.0], [527000.0, 190000.0]]]}}, {"id": "1211", "type": "Feature", "properties": {"easting": 528500.0, "northing": 190500.0, "gridsq": "X528Y190", "numresp": 107, "numpeople": 250.38, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 190000.0], [528000.0, 190000.0], [528000.0, 191000.0], [529000.0, 191000.0], [529000.0, 190000.0]]]}}, {"id": "1212", "type": "Feature", "properties": {"easting": 529500.0, "northing": 190500.0, "gridsq": "X529Y190", "numresp": 149, "numpeople": 348.66, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 190000.0], [529000.0, 190000.0], [529000.0, 191000.0], [530000.0, 191000.0], [530000.0, 190000.0]]]}}, {"id": "1213", "type": "Feature", "properties": {"easting": 530500.0, "northing": 190500.0, "gridsq": "X530Y190", "numresp": 83, "numpeople": 194.22, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 190000.0], [530000.0, 190000.0], [530000.0, 191000.0], [531000.0, 191000.0], [531000.0, 190000.0]]]}}, {"id": "1214", "type": "Feature", "properties": {"easting": 531500.0, "northing": 190500.0, "gridsq": "X531Y190", "numresp": 164, "numpeople": 383.76, "numkeys": 0, "numnonresp": 73, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 190000.0], [531000.0, 190000.0], [531000.0, 191000.0], [532000.0, 191000.0], [532000.0, 190000.0]]]}}, {"id": "1215", "type": "Feature", "properties": {"easting": 532500.0, "northing": 190500.0, "gridsq": "X532Y190", "numresp": 188, "numpeople": 439.92, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 190000.0], [532000.0, 190000.0], [532000.0, 191000.0], [533000.0, 191000.0], [533000.0, 190000.0]]]}}, {"id": "1216", "type": "Feature", "properties": {"easting": 534500.0, "northing": 190500.0, "gridsq": "X534Y190", "numresp": 173, "numpeople": 404.82, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 190000.0], [534000.0, 190000.0], [534000.0, 191000.0], [535000.0, 191000.0], [535000.0, 190000.0]]]}}, {"id": "1217", "type": "Feature", "properties": {"easting": 536500.0, "northing": 190500.0, "gridsq": "X536Y190", "numresp": 154, "numpeople": 360.36, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 190000.0], [536000.0, 190000.0], [536000.0, 191000.0], [537000.0, 191000.0], [537000.0, 190000.0]]]}}, {"id": "1218", "type": "Feature", "properties": {"easting": 537500.0, "northing": 190500.0, "gridsq": "X537Y190", "numresp": 114, "numpeople": 266.76, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 190000.0], [537000.0, 190000.0], [537000.0, 191000.0], [538000.0, 191000.0], [538000.0, 190000.0]]]}}, {"id": "1219", "type": "Feature", "properties": {"easting": 538500.0, "northing": 190500.0, "gridsq": "X538Y190", "numresp": 87, "numpeople": 203.58, "numkeys": 2, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 190000.0], [538000.0, 190000.0], [538000.0, 191000.0], [539000.0, 191000.0], [539000.0, 190000.0]]]}}, {"id": "1220", "type": "Feature", "properties": {"easting": 540500.0, "northing": 190500.0, "gridsq": "X540Y190", "numresp": 25, "numpeople": 58.5, "numkeys": 4, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 190000.0], [540000.0, 190000.0], [540000.0, 191000.0], [541000.0, 191000.0], [541000.0, 190000.0]]]}}, {"id": "1221", "type": "Feature", "properties": {"easting": 541500.0, "northing": 190500.0, "gridsq": "X541Y190", "numresp": 63, "numpeople": 147.42, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 190000.0], [541000.0, 190000.0], [541000.0, 191000.0], [542000.0, 191000.0], [542000.0, 190000.0]]]}}, {"id": "1222", "type": "Feature", "properties": {"easting": 542500.0, "northing": 190500.0, "gridsq": "X542Y190", "numresp": 317, "numpeople": 741.78, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 190000.0], [542000.0, 190000.0], [542000.0, 191000.0], [543000.0, 191000.0], [543000.0, 190000.0]]]}}, {"id": "1223", "type": "Feature", "properties": {"easting": 543500.0, "northing": 190500.0, "gridsq": "X543Y190", "numresp": 149, "numpeople": 348.66, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 190000.0], [543000.0, 190000.0], [543000.0, 191000.0], [544000.0, 191000.0], [544000.0, 190000.0]]]}}, {"id": "1224", "type": "Feature", "properties": {"easting": 549500.0, "northing": 190500.0, "gridsq": "X549Y190", "numresp": 95, "numpeople": 222.3, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 190000.0], [549000.0, 190000.0], [549000.0, 191000.0], [550000.0, 191000.0], [550000.0, 190000.0]]]}}, {"id": "1225", "type": "Feature", "properties": {"easting": 551500.0, "northing": 190500.0, "gridsq": "X551Y190", "numresp": 190, "numpeople": 444.6, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 190000.0], [551000.0, 190000.0], [551000.0, 191000.0], [552000.0, 191000.0], [552000.0, 190000.0]]]}}, {"id": "1226", "type": "Feature", "properties": {"easting": 553500.0, "northing": 190500.0, "gridsq": "X553Y190", "numresp": 235, "numpeople": 549.9, "numkeys": 2, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 190000.0], [553000.0, 190000.0], [553000.0, 191000.0], [554000.0, 191000.0], [554000.0, 190000.0]]]}}, {"id": "1227", "type": "Feature", "properties": {"easting": 555500.0, "northing": 190500.0, "gridsq": "X555Y190", "numresp": 32, "numpeople": 74.88, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[556000.0, 190000.0], [555000.0, 190000.0], [555000.0, 191000.0], [556000.0, 191000.0], [556000.0, 190000.0]]]}}, {"id": "1228", "type": "Feature", "properties": {"easting": 570500.0, "northing": 190500.0, "gridsq": "X570Y190", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[571000.0, 190000.0], [570000.0, 190000.0], [570000.0, 191000.0], [571000.0, 191000.0], [571000.0, 190000.0]]]}}, {"id": "1229", "type": "Feature", "properties": {"easting": 572500.0, "northing": 190500.0, "gridsq": "X572Y190", "numresp": 2, "numpeople": 4.68, "numkeys": 3, "numnonresp": 55, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[573000.0, 190000.0], [572000.0, 190000.0], [572000.0, 191000.0], [573000.0, 191000.0], [573000.0, 190000.0]]]}}, {"id": "1230", "type": "Feature", "properties": {"easting": 580500.0, "northing": 190500.0, "gridsq": "X580Y190", "numresp": 133, "numpeople": 311.22, "numkeys": 3, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[581000.0, 190000.0], [580000.0, 190000.0], [580000.0, 191000.0], [581000.0, 191000.0], [581000.0, 190000.0]]]}}, {"id": "1231", "type": "Feature", "properties": {"easting": 581500.0, "northing": 190500.0, "gridsq": "X581Y190", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 190000.0], [581000.0, 190000.0], [581000.0, 191000.0], [582000.0, 191000.0], [582000.0, 190000.0]]]}}, {"id": "1232", "type": "Feature", "properties": {"easting": 587500.0, "northing": 190500.0, "gridsq": "X587Y190", "numresp": 147, "numpeople": 343.98, "numkeys": 5, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[588000.0, 190000.0], [587000.0, 190000.0], [587000.0, 191000.0], [588000.0, 191000.0], [588000.0, 190000.0]]]}}, {"id": "1233", "type": "Feature", "properties": {"easting": 484500.0, "northing": 191500.0, "gridsq": "X484Y191", "numresp": 53, "numpeople": 124.02, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 191000.0], [484000.0, 191000.0], [484000.0, 192000.0], [485000.0, 192000.0], [485000.0, 191000.0]]]}}, {"id": "1234", "type": "Feature", "properties": {"easting": 489500.0, "northing": 191500.0, "gridsq": "X489Y191", "numresp": 67, "numpeople": 156.78, "numkeys": 1, "numnonresp": 59, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 191000.0], [489000.0, 191000.0], [489000.0, 192000.0], [490000.0, 192000.0], [490000.0, 191000.0]]]}}, {"id": "1235", "type": "Feature", "properties": {"easting": 508500.0, "northing": 191500.0, "gridsq": "X508Y191", "numresp": 95, "numpeople": 222.3, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 191000.0], [508000.0, 191000.0], [508000.0, 192000.0], [509000.0, 192000.0], [509000.0, 191000.0]]]}}, {"id": "1236", "type": "Feature", "properties": {"easting": 512500.0, "northing": 191500.0, "gridsq": "X512Y191", "numresp": 85, "numpeople": 198.9, "numkeys": 1, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 191000.0], [512000.0, 191000.0], [512000.0, 192000.0], [513000.0, 192000.0], [513000.0, 191000.0]]]}}, {"id": "1237", "type": "Feature", "properties": {"easting": 516500.0, "northing": 191500.0, "gridsq": "X516Y191", "numresp": 131, "numpeople": 306.54, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 191000.0], [516000.0, 191000.0], [516000.0, 192000.0], [517000.0, 192000.0], [517000.0, 191000.0]]]}}, {"id": "1238", "type": "Feature", "properties": {"easting": 517500.0, "northing": 191500.0, "gridsq": "X517Y191", "numresp": 194, "numpeople": 453.96, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 191000.0], [517000.0, 191000.0], [517000.0, 192000.0], [518000.0, 192000.0], [518000.0, 191000.0]]]}}, {"id": "1239", "type": "Feature", "properties": {"easting": 519500.0, "northing": 191500.0, "gridsq": "X519Y191", "numresp": 150, "numpeople": 351.0, "numkeys": 2, "numnonresp": 109, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 191000.0], [519000.0, 191000.0], [519000.0, 192000.0], [520000.0, 192000.0], [520000.0, 191000.0]]]}}, {"id": "1240", "type": "Feature", "properties": {"easting": 520500.0, "northing": 191500.0, "gridsq": "X520Y191", "numresp": 116, "numpeople": 271.44, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 191000.0], [520000.0, 191000.0], [520000.0, 192000.0], [521000.0, 192000.0], [521000.0, 191000.0]]]}}, {"id": "1241", "type": "Feature", "properties": {"easting": 521500.0, "northing": 191500.0, "gridsq": "X521Y191", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 191000.0], [521000.0, 191000.0], [521000.0, 192000.0], [522000.0, 192000.0], [522000.0, 191000.0]]]}}, {"id": "1242", "type": "Feature", "properties": {"easting": 522500.0, "northing": 191500.0, "gridsq": "X522Y191", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 191000.0], [522000.0, 191000.0], [522000.0, 192000.0], [523000.0, 192000.0], [523000.0, 191000.0]]]}}, {"id": "1243", "type": "Feature", "properties": {"easting": 523500.0, "northing": 191500.0, "gridsq": "X523Y191", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 191000.0], [523000.0, 191000.0], [523000.0, 192000.0], [524000.0, 192000.0], [524000.0, 191000.0]]]}}, {"id": "1244", "type": "Feature", "properties": {"easting": 526500.0, "northing": 191500.0, "gridsq": "X526Y191", "numresp": 56, "numpeople": 131.04, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 191000.0], [526000.0, 191000.0], [526000.0, 192000.0], [527000.0, 192000.0], [527000.0, 191000.0]]]}}, {"id": "1245", "type": "Feature", "properties": {"easting": 528500.0, "northing": 191500.0, "gridsq": "X528Y191", "numresp": 204, "numpeople": 477.36, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 191000.0], [528000.0, 191000.0], [528000.0, 192000.0], [529000.0, 192000.0], [529000.0, 191000.0]]]}}, {"id": "1246", "type": "Feature", "properties": {"easting": 530500.0, "northing": 191500.0, "gridsq": "X530Y191", "numresp": 165, "numpeople": 386.1, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 191000.0], [530000.0, 191000.0], [530000.0, 192000.0], [531000.0, 192000.0], [531000.0, 191000.0]]]}}, {"id": "1247", "type": "Feature", "properties": {"easting": 532500.0, "northing": 191500.0, "gridsq": "X532Y191", "numresp": 181, "numpeople": 423.54, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 191000.0], [532000.0, 191000.0], [532000.0, 192000.0], [533000.0, 192000.0], [533000.0, 191000.0]]]}}, {"id": "1248", "type": "Feature", "properties": {"easting": 535500.0, "northing": 191500.0, "gridsq": "X535Y191", "numresp": 2, "numpeople": 4.68, "numkeys": 0, "numnonresp": 68, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 191000.0], [535000.0, 191000.0], [535000.0, 192000.0], [536000.0, 192000.0], [536000.0, 191000.0]]]}}, {"id": "1249", "type": "Feature", "properties": {"easting": 536500.0, "northing": 191500.0, "gridsq": "X536Y191", "numresp": 184, "numpeople": 430.56, "numkeys": 2, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 191000.0], [536000.0, 191000.0], [536000.0, 192000.0], [537000.0, 192000.0], [537000.0, 191000.0]]]}}, {"id": "1250", "type": "Feature", "properties": {"easting": 540500.0, "northing": 191500.0, "gridsq": "X540Y191", "numresp": 66, "numpeople": 154.44, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 191000.0], [540000.0, 191000.0], [540000.0, 192000.0], [541000.0, 192000.0], [541000.0, 191000.0]]]}}, {"id": "1251", "type": "Feature", "properties": {"easting": 541500.0, "northing": 191500.0, "gridsq": "X541Y191", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 191000.0], [541000.0, 191000.0], [541000.0, 192000.0], [542000.0, 192000.0], [542000.0, 191000.0]]]}}, {"id": "1252", "type": "Feature", "properties": {"easting": 542500.0, "northing": 191500.0, "gridsq": "X542Y191", "numresp": 76, "numpeople": 177.84, "numkeys": 4, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 191000.0], [542000.0, 191000.0], [542000.0, 192000.0], [543000.0, 192000.0], [543000.0, 191000.0]]]}}, {"id": "1253", "type": "Feature", "properties": {"easting": 544500.0, "northing": 191500.0, "gridsq": "X544Y191", "numresp": 149, "numpeople": 348.66, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 191000.0], [544000.0, 191000.0], [544000.0, 192000.0], [545000.0, 192000.0], [545000.0, 191000.0]]]}}, {"id": "1254", "type": "Feature", "properties": {"easting": 545500.0, "northing": 191500.0, "gridsq": "X545Y191", "numresp": 80, "numpeople": 187.2, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 191000.0], [545000.0, 191000.0], [545000.0, 192000.0], [546000.0, 192000.0], [546000.0, 191000.0]]]}}, {"id": "1255", "type": "Feature", "properties": {"easting": 549500.0, "northing": 191500.0, "gridsq": "X549Y191", "numresp": 197, "numpeople": 460.98, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 191000.0], [549000.0, 191000.0], [549000.0, 192000.0], [550000.0, 192000.0], [550000.0, 191000.0]]]}}, {"id": "1256", "type": "Feature", "properties": {"easting": 550500.0, "northing": 191500.0, "gridsq": "X550Y191", "numresp": 102, "numpeople": 238.68, "numkeys": 17, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[551000.0, 191000.0], [550000.0, 191000.0], [550000.0, 192000.0], [551000.0, 192000.0], [551000.0, 191000.0]]]}}, {"id": "1257", "type": "Feature", "properties": {"easting": 553500.0, "northing": 191500.0, "gridsq": "X553Y191", "numresp": 163, "numpeople": 381.42, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 191000.0], [553000.0, 191000.0], [553000.0, 192000.0], [554000.0, 192000.0], [554000.0, 191000.0]]]}}, {"id": "1258", "type": "Feature", "properties": {"easting": 554500.0, "northing": 191500.0, "gridsq": "X554Y191", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[555000.0, 191000.0], [554000.0, 191000.0], [554000.0, 192000.0], [555000.0, 192000.0], [555000.0, 191000.0]]]}}, {"id": "1259", "type": "Feature", "properties": {"easting": 555500.0, "northing": 191500.0, "gridsq": "X555Y191", "numresp": 44, "numpeople": 102.96, "numkeys": 2, "numnonresp": 75, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[556000.0, 191000.0], [555000.0, 191000.0], [555000.0, 192000.0], [556000.0, 192000.0], [556000.0, 191000.0]]]}}, {"id": "1260", "type": "Feature", "properties": {"easting": 573500.0, "northing": 191500.0, "gridsq": "X573Y191", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[574000.0, 191000.0], [573000.0, 191000.0], [573000.0, 192000.0], [574000.0, 192000.0], [574000.0, 191000.0]]]}}, {"id": "1261", "type": "Feature", "properties": {"easting": 579500.0, "northing": 191500.0, "gridsq": "X579Y191", "numresp": 171, "numpeople": 400.14, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[580000.0, 191000.0], [579000.0, 191000.0], [579000.0, 192000.0], [580000.0, 192000.0], [580000.0, 191000.0]]]}}, {"id": "1262", "type": "Feature", "properties": {"easting": 580500.0, "northing": 191500.0, "gridsq": "X580Y191", "numresp": 163, "numpeople": 381.42, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[581000.0, 191000.0], [580000.0, 191000.0], [580000.0, 192000.0], [581000.0, 192000.0], [581000.0, 191000.0]]]}}, {"id": "1263", "type": "Feature", "properties": {"easting": 581500.0, "northing": 191500.0, "gridsq": "X581Y191", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 191000.0], [581000.0, 191000.0], [581000.0, 192000.0], [582000.0, 192000.0], [582000.0, 191000.0]]]}}, {"id": "1264", "type": "Feature", "properties": {"easting": 586500.0, "northing": 191500.0, "gridsq": "X586Y191", "numresp": 169, "numpeople": 395.46, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[587000.0, 191000.0], [586000.0, 191000.0], [586000.0, 192000.0], [587000.0, 192000.0], [587000.0, 191000.0]]]}}, {"id": "1265", "type": "Feature", "properties": {"easting": 587500.0, "northing": 191500.0, "gridsq": "X587Y191", "numresp": 76, "numpeople": 177.84, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[588000.0, 191000.0], [587000.0, 191000.0], [587000.0, 192000.0], [588000.0, 192000.0], [588000.0, 191000.0]]]}}, {"id": "1266", "type": "Feature", "properties": {"easting": 484500.0, "northing": 192500.0, "gridsq": "X484Y192", "numresp": 98, "numpeople": 229.32, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 192000.0], [484000.0, 192000.0], [484000.0, 193000.0], [485000.0, 193000.0], [485000.0, 192000.0]]]}}, {"id": "1267", "type": "Feature", "properties": {"easting": 486500.0, "northing": 192500.0, "gridsq": "X486Y192", "numresp": 94, "numpeople": 219.96, "numkeys": 15, "numnonresp": 52, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 192000.0], [486000.0, 192000.0], [486000.0, 193000.0], [487000.0, 193000.0], [487000.0, 192000.0]]]}}, {"id": "1268", "type": "Feature", "properties": {"easting": 487500.0, "northing": 192500.0, "gridsq": "X487Y192", "numresp": 213, "numpeople": 498.42, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 192000.0], [487000.0, 192000.0], [487000.0, 193000.0], [488000.0, 193000.0], [488000.0, 192000.0]]]}}, {"id": "1269", "type": "Feature", "properties": {"easting": 488500.0, "northing": 192500.0, "gridsq": "X488Y192", "numresp": 264, "numpeople": 617.76, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 192000.0], [488000.0, 192000.0], [488000.0, 193000.0], [489000.0, 193000.0], [489000.0, 192000.0]]]}}, {"id": "1270", "type": "Feature", "properties": {"easting": 511500.0, "northing": 192500.0, "gridsq": "X511Y192", "numresp": 211, "numpeople": 493.74, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 192000.0], [511000.0, 192000.0], [511000.0, 193000.0], [512000.0, 193000.0], [512000.0, 192000.0]]]}}, {"id": "1271", "type": "Feature", "properties": {"easting": 515500.0, "northing": 192500.0, "gridsq": "X515Y192", "numresp": 12, "numpeople": 28.08, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 192000.0], [515000.0, 192000.0], [515000.0, 193000.0], [516000.0, 193000.0], [516000.0, 192000.0]]]}}, {"id": "1272", "type": "Feature", "properties": {"easting": 517500.0, "northing": 192500.0, "gridsq": "X517Y192", "numresp": 94, "numpeople": 219.96, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 192000.0], [517000.0, 192000.0], [517000.0, 193000.0], [518000.0, 193000.0], [518000.0, 192000.0]]]}}, {"id": "1273", "type": "Feature", "properties": {"easting": 518500.0, "northing": 192500.0, "gridsq": "X518Y192", "numresp": 167, "numpeople": 390.78, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 192000.0], [518000.0, 192000.0], [518000.0, 193000.0], [519000.0, 193000.0], [519000.0, 192000.0]]]}}, {"id": "1274", "type": "Feature", "properties": {"easting": 519500.0, "northing": 192500.0, "gridsq": "X519Y192", "numresp": 225, "numpeople": 526.5, "numkeys": 3, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 192000.0], [519000.0, 192000.0], [519000.0, 193000.0], [520000.0, 193000.0], [520000.0, 192000.0]]]}}, {"id": "1275", "type": "Feature", "properties": {"easting": 521500.0, "northing": 192500.0, "gridsq": "X521Y192", "numresp": 145, "numpeople": 339.3, "numkeys": 2, "numnonresp": 62, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 192000.0], [521000.0, 192000.0], [521000.0, 193000.0], [522000.0, 193000.0], [522000.0, 192000.0]]]}}, {"id": "1276", "type": "Feature", "properties": {"easting": 525500.0, "northing": 192500.0, "gridsq": "X525Y192", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 192000.0], [525000.0, 192000.0], [525000.0, 193000.0], [526000.0, 193000.0], [526000.0, 192000.0]]]}}, {"id": "1277", "type": "Feature", "properties": {"easting": 527500.0, "northing": 192500.0, "gridsq": "X527Y192", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 192000.0], [527000.0, 192000.0], [527000.0, 193000.0], [528000.0, 193000.0], [528000.0, 192000.0]]]}}, {"id": "1278", "type": "Feature", "properties": {"easting": 530500.0, "northing": 192500.0, "gridsq": "X530Y192", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 192000.0], [530000.0, 192000.0], [530000.0, 193000.0], [531000.0, 193000.0], [531000.0, 192000.0]]]}}, {"id": "1279", "type": "Feature", "properties": {"easting": 531500.0, "northing": 192500.0, "gridsq": "X531Y192", "numresp": 147, "numpeople": 343.98, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 192000.0], [531000.0, 192000.0], [531000.0, 193000.0], [532000.0, 193000.0], [532000.0, 192000.0]]]}}, {"id": "1280", "type": "Feature", "properties": {"easting": 533500.0, "northing": 192500.0, "gridsq": "X533Y192", "numresp": 156, "numpeople": 365.04, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 192000.0], [533000.0, 192000.0], [533000.0, 193000.0], [534000.0, 193000.0], [534000.0, 192000.0]]]}}, {"id": "1281", "type": "Feature", "properties": {"easting": 536500.0, "northing": 192500.0, "gridsq": "X536Y192", "numresp": 128, "numpeople": 299.52, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 192000.0], [536000.0, 192000.0], [536000.0, 193000.0], [537000.0, 193000.0], [537000.0, 192000.0]]]}}, {"id": "1282", "type": "Feature", "properties": {"easting": 537500.0, "northing": 192500.0, "gridsq": "X537Y192", "numresp": 144, "numpeople": 336.96, "numkeys": 16, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 192000.0], [537000.0, 192000.0], [537000.0, 193000.0], [538000.0, 193000.0], [538000.0, 192000.0]]]}}, {"id": "1283", "type": "Feature", "properties": {"easting": 545500.0, "northing": 192500.0, "gridsq": "X545Y192", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 192000.0], [545000.0, 192000.0], [545000.0, 193000.0], [546000.0, 193000.0], [546000.0, 192000.0]]]}}, {"id": "1284", "type": "Feature", "properties": {"easting": 546500.0, "northing": 192500.0, "gridsq": "X546Y192", "numresp": 138, "numpeople": 322.92, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 192000.0], [546000.0, 192000.0], [546000.0, 193000.0], [547000.0, 193000.0], [547000.0, 192000.0]]]}}, {"id": "1285", "type": "Feature", "properties": {"easting": 547500.0, "northing": 192500.0, "gridsq": "X547Y192", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 192000.0], [547000.0, 192000.0], [547000.0, 193000.0], [548000.0, 193000.0], [548000.0, 192000.0]]]}}, {"id": "1286", "type": "Feature", "properties": {"easting": 553500.0, "northing": 192500.0, "gridsq": "X553Y192", "numresp": 324, "numpeople": 758.16, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 192000.0], [553000.0, 192000.0], [553000.0, 193000.0], [554000.0, 193000.0], [554000.0, 192000.0]]]}}, {"id": "1287", "type": "Feature", "properties": {"easting": 574500.0, "northing": 192500.0, "gridsq": "X574Y192", "numresp": 957, "numpeople": 2239.38, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 192000.0], [574000.0, 192000.0], [574000.0, 193000.0], [575000.0, 193000.0], [575000.0, 192000.0]]]}}, {"id": "1288", "type": "Feature", "properties": {"easting": 575500.0, "northing": 192500.0, "gridsq": "X575Y192", "numresp": 108, "numpeople": 252.72, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 192000.0], [575000.0, 192000.0], [575000.0, 193000.0], [576000.0, 193000.0], [576000.0, 192000.0]]]}}, {"id": "1289", "type": "Feature", "properties": {"easting": 584500.0, "northing": 192500.0, "gridsq": "X584Y192", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[585000.0, 192000.0], [584000.0, 192000.0], [584000.0, 193000.0], [585000.0, 193000.0], [585000.0, 192000.0]]]}}, {"id": "1290", "type": "Feature", "properties": {"easting": 484500.0, "northing": 193500.0, "gridsq": "X484Y193", "numresp": 186, "numpeople": 435.24, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 193000.0], [484000.0, 193000.0], [484000.0, 194000.0], [485000.0, 194000.0], [485000.0, 193000.0]]]}}, {"id": "1291", "type": "Feature", "properties": {"easting": 485500.0, "northing": 193500.0, "gridsq": "X485Y193", "numresp": 355, "numpeople": 830.7, "numkeys": 4, "numnonresp": 82, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 193000.0], [485000.0, 193000.0], [485000.0, 194000.0], [486000.0, 194000.0], [486000.0, 193000.0]]]}}, {"id": "1292", "type": "Feature", "properties": {"easting": 486500.0, "northing": 193500.0, "gridsq": "X486Y193", "numresp": 210, "numpeople": 491.4, "numkeys": 9, "numnonresp": 227, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 193000.0], [486000.0, 193000.0], [486000.0, 194000.0], [487000.0, 194000.0], [487000.0, 193000.0]]]}}, {"id": "1293", "type": "Feature", "properties": {"easting": 487500.0, "northing": 193500.0, "gridsq": "X487Y193", "numresp": 175, "numpeople": 409.5, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 193000.0], [487000.0, 193000.0], [487000.0, 194000.0], [488000.0, 194000.0], [488000.0, 193000.0]]]}}, {"id": "1294", "type": "Feature", "properties": {"easting": 499500.0, "northing": 193500.0, "gridsq": "X499Y193", "numresp": 19, "numpeople": 44.46, "numkeys": 1, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 193000.0], [499000.0, 193000.0], [499000.0, 194000.0], [500000.0, 194000.0], [500000.0, 193000.0]]]}}, {"id": "1295", "type": "Feature", "properties": {"easting": 511500.0, "northing": 193500.0, "gridsq": "X511Y193", "numresp": 139, "numpeople": 325.26, "numkeys": 0, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 193000.0], [511000.0, 193000.0], [511000.0, 194000.0], [512000.0, 194000.0], [512000.0, 193000.0]]]}}, {"id": "1296", "type": "Feature", "properties": {"easting": 519500.0, "northing": 193500.0, "gridsq": "X519Y193", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 193000.0], [519000.0, 193000.0], [519000.0, 194000.0], [520000.0, 194000.0], [520000.0, 193000.0]]]}}, {"id": "1297", "type": "Feature", "properties": {"easting": 520500.0, "northing": 193500.0, "gridsq": "X520Y193", "numresp": 106, "numpeople": 248.04, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 193000.0], [520000.0, 193000.0], [520000.0, 194000.0], [521000.0, 194000.0], [521000.0, 193000.0]]]}}, {"id": "1298", "type": "Feature", "properties": {"easting": 528500.0, "northing": 193500.0, "gridsq": "X528Y193", "numresp": 47, "numpeople": 109.98, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 193000.0], [528000.0, 193000.0], [528000.0, 194000.0], [529000.0, 194000.0], [529000.0, 193000.0]]]}}, {"id": "1299", "type": "Feature", "properties": {"easting": 531500.0, "northing": 193500.0, "gridsq": "X531Y193", "numresp": 107, "numpeople": 250.38, "numkeys": 4, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 193000.0], [531000.0, 193000.0], [531000.0, 194000.0], [532000.0, 194000.0], [532000.0, 193000.0]]]}}, {"id": "1300", "type": "Feature", "properties": {"easting": 558500.0, "northing": 193500.0, "gridsq": "X558Y193", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 193000.0], [558000.0, 193000.0], [558000.0, 194000.0], [559000.0, 194000.0], [559000.0, 193000.0]]]}}, {"id": "1301", "type": "Feature", "properties": {"easting": 559500.0, "northing": 193500.0, "gridsq": "X559Y193", "numresp": 58, "numpeople": 135.72, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[560000.0, 193000.0], [559000.0, 193000.0], [559000.0, 194000.0], [560000.0, 194000.0], [560000.0, 193000.0]]]}}, {"id": "1302", "type": "Feature", "properties": {"easting": 574500.0, "northing": 193500.0, "gridsq": "X574Y193", "numresp": 365, "numpeople": 854.1, "numkeys": 10, "numnonresp": 196, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 193000.0], [574000.0, 193000.0], [574000.0, 194000.0], [575000.0, 194000.0], [575000.0, 193000.0]]]}}, {"id": "1303", "type": "Feature", "properties": {"easting": 575500.0, "northing": 193500.0, "gridsq": "X575Y193", "numresp": 54, "numpeople": 126.36, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 193000.0], [575000.0, 193000.0], [575000.0, 194000.0], [576000.0, 194000.0], [576000.0, 193000.0]]]}}, {"id": "1304", "type": "Feature", "properties": {"easting": 468500.0, "northing": 194500.0, "gridsq": "X468Y194", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[469000.0, 194000.0], [468000.0, 194000.0], [468000.0, 195000.0], [469000.0, 195000.0], [469000.0, 194000.0]]]}}, {"id": "1305", "type": "Feature", "properties": {"easting": 504500.0, "northing": 194500.0, "gridsq": "X504Y194", "numresp": 123, "numpeople": 287.82, "numkeys": 5, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 194000.0], [504000.0, 194000.0], [504000.0, 195000.0], [505000.0, 195000.0], [505000.0, 194000.0]]]}}, {"id": "1306", "type": "Feature", "properties": {"easting": 529500.0, "northing": 194500.0, "gridsq": "X529Y194", "numresp": 149, "numpeople": 348.66, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 194000.0], [529000.0, 194000.0], [529000.0, 195000.0], [530000.0, 195000.0], [530000.0, 194000.0]]]}}, {"id": "1307", "type": "Feature", "properties": {"easting": 532500.0, "northing": 194500.0, "gridsq": "X532Y194", "numresp": 87, "numpeople": 203.58, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 194000.0], [532000.0, 194000.0], [532000.0, 195000.0], [533000.0, 195000.0], [533000.0, 194000.0]]]}}, {"id": "1308", "type": "Feature", "properties": {"easting": 565500.0, "northing": 194500.0, "gridsq": "X565Y194", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[566000.0, 194000.0], [565000.0, 194000.0], [565000.0, 195000.0], [566000.0, 195000.0], [566000.0, 194000.0]]]}}, {"id": "1309", "type": "Feature", "properties": {"easting": 567500.0, "northing": 194500.0, "gridsq": "X567Y194", "numresp": 185, "numpeople": 432.9, "numkeys": 0, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[568000.0, 194000.0], [567000.0, 194000.0], [567000.0, 195000.0], [568000.0, 195000.0], [568000.0, 194000.0]]]}}, {"id": "1310", "type": "Feature", "properties": {"easting": 568500.0, "northing": 194500.0, "gridsq": "X568Y194", "numresp": 122, "numpeople": 285.48, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[569000.0, 194000.0], [568000.0, 194000.0], [568000.0, 195000.0], [569000.0, 195000.0], [569000.0, 194000.0]]]}}, {"id": "1311", "type": "Feature", "properties": {"easting": 574500.0, "northing": 194500.0, "gridsq": "X574Y194", "numresp": 143, "numpeople": 334.62, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[575000.0, 194000.0], [574000.0, 194000.0], [574000.0, 195000.0], [575000.0, 195000.0], [575000.0, 194000.0]]]}}, {"id": "1312", "type": "Feature", "properties": {"easting": 575500.0, "northing": 194500.0, "gridsq": "X575Y194", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[576000.0, 194000.0], [575000.0, 194000.0], [575000.0, 195000.0], [576000.0, 195000.0], [576000.0, 194000.0]]]}}, {"id": "1313", "type": "Feature", "properties": {"easting": 583500.0, "northing": 194500.0, "gridsq": "X583Y194", "numresp": 39, "numpeople": 91.26, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[584000.0, 194000.0], [583000.0, 194000.0], [583000.0, 195000.0], [584000.0, 195000.0], [584000.0, 194000.0]]]}}, {"id": "1314", "type": "Feature", "properties": {"easting": 502500.0, "northing": 195500.0, "gridsq": "X502Y195", "numresp": 147, "numpeople": 343.98, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 195000.0], [502000.0, 195000.0], [502000.0, 196000.0], [503000.0, 196000.0], [503000.0, 195000.0]]]}}, {"id": "1315", "type": "Feature", "properties": {"easting": 507500.0, "northing": 195500.0, "gridsq": "X507Y195", "numresp": 60, "numpeople": 140.4, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 195000.0], [507000.0, 195000.0], [507000.0, 196000.0], [508000.0, 196000.0], [508000.0, 195000.0]]]}}, {"id": "1316", "type": "Feature", "properties": {"easting": 511500.0, "northing": 195500.0, "gridsq": "X511Y195", "numresp": 53, "numpeople": 124.02, "numkeys": 2, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 195000.0], [511000.0, 195000.0], [511000.0, 196000.0], [512000.0, 196000.0], [512000.0, 195000.0]]]}}, {"id": "1317", "type": "Feature", "properties": {"easting": 512500.0, "northing": 195500.0, "gridsq": "X512Y195", "numresp": 111, "numpeople": 259.74, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 195000.0], [512000.0, 195000.0], [512000.0, 196000.0], [513000.0, 196000.0], [513000.0, 195000.0]]]}}, {"id": "1318", "type": "Feature", "properties": {"easting": 513500.0, "northing": 195500.0, "gridsq": "X513Y195", "numresp": 160, "numpeople": 374.4, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 195000.0], [513000.0, 195000.0], [513000.0, 196000.0], [514000.0, 196000.0], [514000.0, 195000.0]]]}}, {"id": "1319", "type": "Feature", "properties": {"easting": 523500.0, "northing": 195500.0, "gridsq": "X523Y195", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 195000.0], [523000.0, 195000.0], [523000.0, 196000.0], [524000.0, 196000.0], [524000.0, 195000.0]]]}}, {"id": "1320", "type": "Feature", "properties": {"easting": 524500.0, "northing": 195500.0, "gridsq": "X524Y195", "numresp": 108, "numpeople": 252.72, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 195000.0], [524000.0, 195000.0], [524000.0, 196000.0], [525000.0, 196000.0], [525000.0, 195000.0]]]}}, {"id": "1321", "type": "Feature", "properties": {"easting": 527500.0, "northing": 195500.0, "gridsq": "X527Y195", "numresp": 174, "numpeople": 407.16, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 195000.0], [527000.0, 195000.0], [527000.0, 196000.0], [528000.0, 196000.0], [528000.0, 195000.0]]]}}, {"id": "1322", "type": "Feature", "properties": {"easting": 529500.0, "northing": 195500.0, "gridsq": "X529Y195", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 195000.0], [529000.0, 195000.0], [529000.0, 196000.0], [530000.0, 196000.0], [530000.0, 195000.0]]]}}, {"id": "1323", "type": "Feature", "properties": {"easting": 533500.0, "northing": 195500.0, "gridsq": "X533Y195", "numresp": 199, "numpeople": 465.66, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 195000.0], [533000.0, 195000.0], [533000.0, 196000.0], [534000.0, 196000.0], [534000.0, 195000.0]]]}}, {"id": "1324", "type": "Feature", "properties": {"easting": 534500.0, "northing": 195500.0, "gridsq": "X534Y195", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 195000.0], [534000.0, 195000.0], [534000.0, 196000.0], [535000.0, 196000.0], [535000.0, 195000.0]]]}}, {"id": "1325", "type": "Feature", "properties": {"easting": 538500.0, "northing": 195500.0, "gridsq": "X538Y195", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 195000.0], [538000.0, 195000.0], [538000.0, 196000.0], [539000.0, 196000.0], [539000.0, 195000.0]]]}}, {"id": "1326", "type": "Feature", "properties": {"easting": 542500.0, "northing": 195500.0, "gridsq": "X542Y195", "numresp": 236, "numpeople": 552.24, "numkeys": 5, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 195000.0], [542000.0, 195000.0], [542000.0, 196000.0], [543000.0, 196000.0], [543000.0, 195000.0]]]}}, {"id": "1327", "type": "Feature", "properties": {"easting": 543500.0, "northing": 195500.0, "gridsq": "X543Y195", "numresp": 98, "numpeople": 229.32, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 195000.0], [543000.0, 195000.0], [543000.0, 196000.0], [544000.0, 196000.0], [544000.0, 195000.0]]]}}, {"id": "1328", "type": "Feature", "properties": {"easting": 558500.0, "northing": 195500.0, "gridsq": "X558Y195", "numresp": 108, "numpeople": 252.72, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[559000.0, 195000.0], [558000.0, 195000.0], [558000.0, 196000.0], [559000.0, 196000.0], [559000.0, 195000.0]]]}}, {"id": "1329", "type": "Feature", "properties": {"easting": 561500.0, "northing": 195500.0, "gridsq": "X561Y195", "numresp": 118, "numpeople": 276.12, "numkeys": 3, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[562000.0, 195000.0], [561000.0, 195000.0], [561000.0, 196000.0], [562000.0, 196000.0], [562000.0, 195000.0]]]}}, {"id": "1330", "type": "Feature", "properties": {"easting": 562500.0, "northing": 195500.0, "gridsq": "X562Y195", "numresp": 165, "numpeople": 386.1, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[563000.0, 195000.0], [562000.0, 195000.0], [562000.0, 196000.0], [563000.0, 196000.0], [563000.0, 195000.0]]]}}, {"id": "1331", "type": "Feature", "properties": {"easting": 563500.0, "northing": 195500.0, "gridsq": "X563Y195", "numresp": 89, "numpeople": 208.26, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[564000.0, 195000.0], [563000.0, 195000.0], [563000.0, 196000.0], [564000.0, 196000.0], [564000.0, 195000.0]]]}}, {"id": "1332", "type": "Feature", "properties": {"easting": 566500.0, "northing": 195500.0, "gridsq": "X566Y195", "numresp": 125, "numpeople": 292.5, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[567000.0, 195000.0], [566000.0, 195000.0], [566000.0, 196000.0], [567000.0, 196000.0], [567000.0, 195000.0]]]}}, {"id": "1333", "type": "Feature", "properties": {"easting": 502500.0, "northing": 196500.0, "gridsq": "X502Y196", "numresp": 57, "numpeople": 133.38, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 196000.0], [502000.0, 196000.0], [502000.0, 197000.0], [503000.0, 197000.0], [503000.0, 196000.0]]]}}, {"id": "1334", "type": "Feature", "properties": {"easting": 511500.0, "northing": 196500.0, "gridsq": "X511Y196", "numresp": 119, "numpeople": 278.46, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 196000.0], [511000.0, 196000.0], [511000.0, 197000.0], [512000.0, 197000.0], [512000.0, 196000.0]]]}}, {"id": "1335", "type": "Feature", "properties": {"easting": 519500.0, "northing": 196500.0, "gridsq": "X519Y196", "numresp": 176, "numpeople": 411.84, "numkeys": 2, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 196000.0], [519000.0, 196000.0], [519000.0, 197000.0], [520000.0, 197000.0], [520000.0, 196000.0]]]}}, {"id": "1336", "type": "Feature", "properties": {"easting": 525500.0, "northing": 196500.0, "gridsq": "X525Y196", "numresp": 134, "numpeople": 313.56, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 196000.0], [525000.0, 196000.0], [525000.0, 197000.0], [526000.0, 197000.0], [526000.0, 196000.0]]]}}, {"id": "1337", "type": "Feature", "properties": {"easting": 526500.0, "northing": 196500.0, "gridsq": "X526Y196", "numresp": 209, "numpeople": 489.06, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 196000.0], [526000.0, 196000.0], [526000.0, 197000.0], [527000.0, 197000.0], [527000.0, 196000.0]]]}}, {"id": "1338", "type": "Feature", "properties": {"easting": 532500.0, "northing": 196500.0, "gridsq": "X532Y196", "numresp": 149, "numpeople": 348.66, "numkeys": 7, "numnonresp": 78, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 196000.0], [532000.0, 196000.0], [532000.0, 197000.0], [533000.0, 197000.0], [533000.0, 196000.0]]]}}, {"id": "1339", "type": "Feature", "properties": {"easting": 536500.0, "northing": 196500.0, "gridsq": "X536Y196", "numresp": 16, "numpeople": 37.44, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 196000.0], [536000.0, 196000.0], [536000.0, 197000.0], [537000.0, 197000.0], [537000.0, 196000.0]]]}}, {"id": "1340", "type": "Feature", "properties": {"easting": 542500.0, "northing": 196500.0, "gridsq": "X542Y196", "numresp": 94, "numpeople": 219.96, "numkeys": 3, "numnonresp": 70, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 196000.0], [542000.0, 196000.0], [542000.0, 197000.0], [543000.0, 197000.0], [543000.0, 196000.0]]]}}, {"id": "1341", "type": "Feature", "properties": {"easting": 566500.0, "northing": 196500.0, "gridsq": "X566Y196", "numresp": 85, "numpeople": 198.9, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[567000.0, 196000.0], [566000.0, 196000.0], [566000.0, 197000.0], [567000.0, 197000.0], [567000.0, 196000.0]]]}}, {"id": "1342", "type": "Feature", "properties": {"easting": 568500.0, "northing": 196500.0, "gridsq": "X568Y196", "numresp": 105, "numpeople": 245.7, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[569000.0, 196000.0], [568000.0, 196000.0], [568000.0, 197000.0], [569000.0, 197000.0], [569000.0, 196000.0]]]}}, {"id": "1343", "type": "Feature", "properties": {"easting": 449500.0, "northing": 197500.0, "gridsq": "X449Y197", "numresp": 56, "numpeople": 131.04, "numkeys": 5, "numnonresp": 81, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[450000.0, 197000.0], [449000.0, 197000.0], [449000.0, 198000.0], [450000.0, 198000.0], [450000.0, 197000.0]]]}}, {"id": "1344", "type": "Feature", "properties": {"easting": 495500.0, "northing": 197500.0, "gridsq": "X495Y197", "numresp": 35, "numpeople": 81.9, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[496000.0, 197000.0], [495000.0, 197000.0], [495000.0, 198000.0], [496000.0, 198000.0], [496000.0, 197000.0]]]}}, {"id": "1345", "type": "Feature", "properties": {"easting": 496500.0, "northing": 197500.0, "gridsq": "X496Y197", "numresp": 45, "numpeople": 105.3, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 197000.0], [496000.0, 197000.0], [496000.0, 198000.0], [497000.0, 198000.0], [497000.0, 197000.0]]]}}, {"id": "1346", "type": "Feature", "properties": {"easting": 518500.0, "northing": 197500.0, "gridsq": "X518Y197", "numresp": 215, "numpeople": 503.1, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 197000.0], [518000.0, 197000.0], [518000.0, 198000.0], [519000.0, 198000.0], [519000.0, 197000.0]]]}}, {"id": "1347", "type": "Feature", "properties": {"easting": 519500.0, "northing": 197500.0, "gridsq": "X519Y197", "numresp": 206, "numpeople": 482.04, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 197000.0], [519000.0, 197000.0], [519000.0, 198000.0], [520000.0, 198000.0], [520000.0, 197000.0]]]}}, {"id": "1348", "type": "Feature", "properties": {"easting": 532500.0, "northing": 197500.0, "gridsq": "X532Y197", "numresp": 225, "numpeople": 526.5, "numkeys": 0, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 197000.0], [532000.0, 197000.0], [532000.0, 198000.0], [533000.0, 198000.0], [533000.0, 197000.0]]]}}, {"id": "1349", "type": "Feature", "properties": {"easting": 534500.0, "northing": 197500.0, "gridsq": "X534Y197", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 197000.0], [534000.0, 197000.0], [534000.0, 198000.0], [535000.0, 198000.0], [535000.0, 197000.0]]]}}, {"id": "1350", "type": "Feature", "properties": {"easting": 535500.0, "northing": 197500.0, "gridsq": "X535Y197", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 197000.0], [535000.0, 197000.0], [535000.0, 198000.0], [536000.0, 198000.0], [536000.0, 197000.0]]]}}, {"id": "1351", "type": "Feature", "properties": {"easting": 543500.0, "northing": 197500.0, "gridsq": "X543Y197", "numresp": 266, "numpeople": 622.44, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 197000.0], [543000.0, 197000.0], [543000.0, 198000.0], [544000.0, 198000.0], [544000.0, 197000.0]]]}}, {"id": "1352", "type": "Feature", "properties": {"easting": 581500.0, "northing": 197500.0, "gridsq": "X581Y197", "numresp": 87, "numpeople": 203.58, "numkeys": 1, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 197000.0], [581000.0, 197000.0], [581000.0, 198000.0], [582000.0, 198000.0], [582000.0, 197000.0]]]}}, {"id": "1353", "type": "Feature", "properties": {"easting": 450500.0, "northing": 198500.0, "gridsq": "X450Y198", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 198000.0], [450000.0, 198000.0], [450000.0, 199000.0], [451000.0, 199000.0], [451000.0, 198000.0]]]}}, {"id": "1354", "type": "Feature", "properties": {"easting": 497500.0, "northing": 198500.0, "gridsq": "X497Y198", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[498000.0, 198000.0], [497000.0, 198000.0], [497000.0, 199000.0], [498000.0, 199000.0], [498000.0, 198000.0]]]}}, {"id": "1355", "type": "Feature", "properties": {"easting": 510500.0, "northing": 198500.0, "gridsq": "X510Y198", "numresp": 66, "numpeople": 154.44, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 198000.0], [510000.0, 198000.0], [510000.0, 199000.0], [511000.0, 199000.0], [511000.0, 198000.0]]]}}, {"id": "1356", "type": "Feature", "properties": {"easting": 511500.0, "northing": 198500.0, "gridsq": "X511Y198", "numresp": 136, "numpeople": 318.24, "numkeys": 1, "numnonresp": 52, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 198000.0], [511000.0, 198000.0], [511000.0, 199000.0], [512000.0, 199000.0], [512000.0, 198000.0]]]}}, {"id": "1357", "type": "Feature", "properties": {"easting": 384500.0, "northing": 199500.0, "gridsq": "X384Y199", "numresp": 41, "numpeople": 95.94, "numkeys": 3, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 199000.0], [384000.0, 199000.0], [384000.0, 200000.0], [385000.0, 200000.0], [385000.0, 199000.0]]]}}, {"id": "1358", "type": "Feature", "properties": {"easting": 385500.0, "northing": 199500.0, "gridsq": "X385Y199", "numresp": 14, "numpeople": 32.76, "numkeys": 0, "numnonresp": 74, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 199000.0], [385000.0, 199000.0], [385000.0, 200000.0], [386000.0, 200000.0], [386000.0, 199000.0]]]}}, {"id": "1359", "type": "Feature", "properties": {"easting": 511500.0, "northing": 199500.0, "gridsq": "X511Y199", "numresp": 248, "numpeople": 580.32, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 199000.0], [511000.0, 199000.0], [511000.0, 200000.0], [512000.0, 200000.0], [512000.0, 199000.0]]]}}, {"id": "1360", "type": "Feature", "properties": {"easting": 516500.0, "northing": 199500.0, "gridsq": "X516Y199", "numresp": 74, "numpeople": 173.16, "numkeys": 1, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 199000.0], [516000.0, 199000.0], [516000.0, 200000.0], [517000.0, 200000.0], [517000.0, 199000.0]]]}}, {"id": "1361", "type": "Feature", "properties": {"easting": 545500.0, "northing": 199500.0, "gridsq": "X545Y199", "numresp": 154, "numpeople": 360.36, "numkeys": 1, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 199000.0], [545000.0, 199000.0], [545000.0, 200000.0], [546000.0, 200000.0], [546000.0, 199000.0]]]}}, {"id": "1362", "type": "Feature", "properties": {"easting": 487500.0, "northing": 200500.0, "gridsq": "X487Y200", "numresp": 118, "numpeople": 276.12, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 200000.0], [487000.0, 200000.0], [487000.0, 201000.0], [488000.0, 201000.0], [488000.0, 200000.0]]]}}, {"id": "1363", "type": "Feature", "properties": {"easting": 496500.0, "northing": 200500.0, "gridsq": "X496Y200", "numresp": 97, "numpeople": 226.98, "numkeys": 3, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 200000.0], [496000.0, 200000.0], [496000.0, 201000.0], [497000.0, 201000.0], [497000.0, 200000.0]]]}}, {"id": "1364", "type": "Feature", "properties": {"easting": 525500.0, "northing": 200500.0, "gridsq": "X525Y200", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 200000.0], [525000.0, 200000.0], [525000.0, 201000.0], [526000.0, 201000.0], [526000.0, 200000.0]]]}}, {"id": "1365", "type": "Feature", "properties": {"easting": 539500.0, "northing": 200500.0, "gridsq": "X539Y200", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[540000.0, 200000.0], [539000.0, 200000.0], [539000.0, 201000.0], [540000.0, 201000.0], [540000.0, 200000.0]]]}}, {"id": "1366", "type": "Feature", "properties": {"easting": 540500.0, "northing": 200500.0, "gridsq": "X540Y200", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 200000.0], [540000.0, 200000.0], [540000.0, 201000.0], [541000.0, 201000.0], [541000.0, 200000.0]]]}}, {"id": "1367", "type": "Feature", "properties": {"easting": 384500.0, "northing": 201500.0, "gridsq": "X384Y201", "numresp": 2, "numpeople": 4.68, "numkeys": 1, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 201000.0], [384000.0, 201000.0], [384000.0, 202000.0], [385000.0, 202000.0], [385000.0, 201000.0]]]}}, {"id": "1368", "type": "Feature", "properties": {"easting": 489500.0, "northing": 201500.0, "gridsq": "X489Y201", "numresp": 98, "numpeople": 229.32, "numkeys": 1, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 201000.0], [489000.0, 201000.0], [489000.0, 202000.0], [490000.0, 202000.0], [490000.0, 201000.0]]]}}, {"id": "1369", "type": "Feature", "properties": {"easting": 495500.0, "northing": 201500.0, "gridsq": "X495Y201", "numresp": 192, "numpeople": 449.28, "numkeys": 1, "numnonresp": 161, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[496000.0, 201000.0], [495000.0, 201000.0], [495000.0, 202000.0], [496000.0, 202000.0], [496000.0, 201000.0]]]}}, {"id": "1370", "type": "Feature", "properties": {"easting": 496500.0, "northing": 201500.0, "gridsq": "X496Y201", "numresp": 90, "numpeople": 210.6, "numkeys": 4, "numnonresp": 87, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 201000.0], [496000.0, 201000.0], [496000.0, 202000.0], [497000.0, 202000.0], [497000.0, 201000.0]]]}}, {"id": "1371", "type": "Feature", "properties": {"easting": 524500.0, "northing": 201500.0, "gridsq": "X524Y201", "numresp": 163, "numpeople": 381.42, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 201000.0], [524000.0, 201000.0], [524000.0, 202000.0], [525000.0, 202000.0], [525000.0, 201000.0]]]}}, {"id": "1372", "type": "Feature", "properties": {"easting": 525500.0, "northing": 201500.0, "gridsq": "X525Y201", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 201000.0], [525000.0, 201000.0], [525000.0, 202000.0], [526000.0, 202000.0], [526000.0, 201000.0]]]}}, {"id": "1373", "type": "Feature", "properties": {"easting": 386500.0, "northing": 202500.0, "gridsq": "X386Y202", "numresp": 13, "numpeople": 30.42, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 202000.0], [386000.0, 202000.0], [386000.0, 203000.0], [387000.0, 203000.0], [387000.0, 202000.0]]]}}, {"id": "1374", "type": "Feature", "properties": {"easting": 387500.0, "northing": 202500.0, "gridsq": "X387Y202", "numresp": 18, "numpeople": 42.12, "numkeys": 0, "numnonresp": 80, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 202000.0], [387000.0, 202000.0], [387000.0, 203000.0], [388000.0, 203000.0], [388000.0, 202000.0]]]}}, {"id": "1375", "type": "Feature", "properties": {"easting": 389500.0, "northing": 202500.0, "gridsq": "X389Y202", "numresp": 21, "numpeople": 49.14, "numkeys": 1, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 202000.0], [389000.0, 202000.0], [389000.0, 203000.0], [390000.0, 203000.0], [390000.0, 202000.0]]]}}, {"id": "1376", "type": "Feature", "properties": {"easting": 495500.0, "northing": 202500.0, "gridsq": "X495Y202", "numresp": 260, "numpeople": 608.4, "numkeys": 3, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[496000.0, 202000.0], [495000.0, 202000.0], [495000.0, 203000.0], [496000.0, 203000.0], [496000.0, 202000.0]]]}}, {"id": "1377", "type": "Feature", "properties": {"easting": 496500.0, "northing": 202500.0, "gridsq": "X496Y202", "numresp": 434, "numpeople": 1015.56, "numkeys": 2, "numnonresp": 104, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 202000.0], [496000.0, 202000.0], [496000.0, 203000.0], [497000.0, 203000.0], [497000.0, 202000.0]]]}}, {"id": "1378", "type": "Feature", "properties": {"easting": 534500.0, "northing": 202500.0, "gridsq": "X534Y202", "numresp": 187, "numpeople": 437.58, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 202000.0], [534000.0, 202000.0], [534000.0, 203000.0], [535000.0, 203000.0], [535000.0, 202000.0]]]}}, {"id": "1379", "type": "Feature", "properties": {"easting": 578500.0, "northing": 202500.0, "gridsq": "X578Y202", "numresp": 36, "numpeople": 84.24, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[579000.0, 202000.0], [578000.0, 202000.0], [578000.0, 203000.0], [579000.0, 203000.0], [579000.0, 202000.0]]]}}, {"id": "1380", "type": "Feature", "properties": {"easting": 383500.0, "northing": 203500.0, "gridsq": "X383Y203", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 44, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 203000.0], [383000.0, 203000.0], [383000.0, 204000.0], [384000.0, 204000.0], [384000.0, 203000.0]]]}}, {"id": "1381", "type": "Feature", "properties": {"easting": 455500.0, "northing": 203500.0, "gridsq": "X455Y203", "numresp": 3, "numpeople": 7.02, "numkeys": 1, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[456000.0, 203000.0], [455000.0, 203000.0], [455000.0, 204000.0], [456000.0, 204000.0], [456000.0, 203000.0]]]}}, {"id": "1382", "type": "Feature", "properties": {"easting": 480500.0, "northing": 203500.0, "gridsq": "X480Y203", "numresp": 132, "numpeople": 308.88, "numkeys": 1, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 203000.0], [480000.0, 203000.0], [480000.0, 204000.0], [481000.0, 204000.0], [481000.0, 203000.0]]]}}, {"id": "1383", "type": "Feature", "properties": {"easting": 501500.0, "northing": 203500.0, "gridsq": "X501Y203", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[502000.0, 203000.0], [501000.0, 203000.0], [501000.0, 204000.0], [502000.0, 204000.0], [502000.0, 203000.0]]]}}, {"id": "1384", "type": "Feature", "properties": {"easting": 523500.0, "northing": 203500.0, "gridsq": "X523Y203", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 203000.0], [523000.0, 203000.0], [523000.0, 204000.0], [524000.0, 204000.0], [524000.0, 203000.0]]]}}, {"id": "1385", "type": "Feature", "properties": {"easting": 534500.0, "northing": 203500.0, "gridsq": "X534Y203", "numresp": 194, "numpeople": 453.96, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 203000.0], [534000.0, 203000.0], [534000.0, 204000.0], [535000.0, 204000.0], [535000.0, 203000.0]]]}}, {"id": "1386", "type": "Feature", "properties": {"easting": 549500.0, "northing": 203500.0, "gridsq": "X549Y203", "numresp": 104, "numpeople": 243.36, "numkeys": 1, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 203000.0], [549000.0, 203000.0], [549000.0, 204000.0], [550000.0, 204000.0], [550000.0, 203000.0]]]}}, {"id": "1387", "type": "Feature", "properties": {"easting": 383500.0, "northing": 204500.0, "gridsq": "X383Y204", "numresp": 39, "numpeople": 91.26, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 204000.0], [383000.0, 204000.0], [383000.0, 205000.0], [384000.0, 205000.0], [384000.0, 204000.0]]]}}, {"id": "1388", "type": "Feature", "properties": {"easting": 383500.0, "northing": 205500.0, "gridsq": "X383Y205", "numresp": 24, "numpeople": 56.16, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 205000.0], [383000.0, 205000.0], [383000.0, 206000.0], [384000.0, 206000.0], [384000.0, 205000.0]]]}}, {"id": "1389", "type": "Feature", "properties": {"easting": 385500.0, "northing": 205500.0, "gridsq": "X385Y205", "numresp": 65, "numpeople": 152.1, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 205000.0], [385000.0, 205000.0], [385000.0, 206000.0], [386000.0, 206000.0], [386000.0, 205000.0]]]}}, {"id": "1390", "type": "Feature", "properties": {"easting": 459500.0, "northing": 205500.0, "gridsq": "X459Y205", "numresp": 88, "numpeople": 205.92, "numkeys": 2, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 205000.0], [459000.0, 205000.0], [459000.0, 206000.0], [460000.0, 206000.0], [460000.0, 205000.0]]]}}, {"id": "1391", "type": "Feature", "properties": {"easting": 505500.0, "northing": 205500.0, "gridsq": "X505Y205", "numresp": 65, "numpeople": 152.1, "numkeys": 2, "numnonresp": 41, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 205000.0], [505000.0, 205000.0], [505000.0, 206000.0], [506000.0, 206000.0], [506000.0, 205000.0]]]}}, {"id": "1392", "type": "Feature", "properties": {"easting": 506500.0, "northing": 205500.0, "gridsq": "X506Y205", "numresp": 202, "numpeople": 472.68, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 205000.0], [506000.0, 205000.0], [506000.0, 206000.0], [507000.0, 206000.0], [507000.0, 205000.0]]]}}, {"id": "1393", "type": "Feature", "properties": {"easting": 536500.0, "northing": 205500.0, "gridsq": "X536Y205", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 205000.0], [536000.0, 205000.0], [536000.0, 206000.0], [537000.0, 206000.0], [537000.0, 205000.0]]]}}, {"id": "1394", "type": "Feature", "properties": {"easting": 571500.0, "northing": 205500.0, "gridsq": "X571Y205", "numresp": 129, "numpeople": 301.86, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[572000.0, 205000.0], [571000.0, 205000.0], [571000.0, 206000.0], [572000.0, 206000.0], [572000.0, 205000.0]]]}}, {"id": "1395", "type": "Feature", "properties": {"easting": 585500.0, "northing": 205500.0, "gridsq": "X585Y205", "numresp": 112, "numpeople": 262.08, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[586000.0, 205000.0], [585000.0, 205000.0], [585000.0, 206000.0], [586000.0, 206000.0], [586000.0, 205000.0]]]}}, {"id": "1396", "type": "Feature", "properties": {"easting": 448500.0, "northing": 206500.0, "gridsq": "X448Y206", "numresp": 49, "numpeople": 114.66, "numkeys": 1, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 206000.0], [448000.0, 206000.0], [448000.0, 207000.0], [449000.0, 207000.0], [449000.0, 206000.0]]]}}, {"id": "1397", "type": "Feature", "properties": {"easting": 450500.0, "northing": 206500.0, "gridsq": "X450Y206", "numresp": 54, "numpeople": 126.36, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 206000.0], [450000.0, 206000.0], [450000.0, 207000.0], [451000.0, 207000.0], [451000.0, 206000.0]]]}}, {"id": "1398", "type": "Feature", "properties": {"easting": 471500.0, "northing": 206500.0, "gridsq": "X471Y206", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 206000.0], [471000.0, 206000.0], [471000.0, 207000.0], [472000.0, 207000.0], [472000.0, 206000.0]]]}}, {"id": "1399", "type": "Feature", "properties": {"easting": 505500.0, "northing": 206500.0, "gridsq": "X505Y206", "numresp": 43, "numpeople": 100.62, "numkeys": 2, "numnonresp": 55, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 206000.0], [505000.0, 206000.0], [505000.0, 207000.0], [506000.0, 207000.0], [506000.0, 206000.0]]]}}, {"id": "1400", "type": "Feature", "properties": {"easting": 515500.0, "northing": 206500.0, "gridsq": "X515Y206", "numresp": 199, "numpeople": 465.66, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[516000.0, 206000.0], [515000.0, 206000.0], [515000.0, 207000.0], [516000.0, 207000.0], [516000.0, 206000.0]]]}}, {"id": "1401", "type": "Feature", "properties": {"easting": 540500.0, "northing": 206500.0, "gridsq": "X540Y206", "numresp": 4, "numpeople": 9.36, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 206000.0], [540000.0, 206000.0], [540000.0, 207000.0], [541000.0, 207000.0], [541000.0, 206000.0]]]}}, {"id": "1402", "type": "Feature", "properties": {"easting": 570500.0, "northing": 206500.0, "gridsq": "X570Y206", "numresp": 76, "numpeople": 177.84, "numkeys": 1, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[571000.0, 206000.0], [570000.0, 206000.0], [570000.0, 207000.0], [571000.0, 207000.0], [571000.0, 206000.0]]]}}, {"id": "1403", "type": "Feature", "properties": {"easting": 571500.0, "northing": 206500.0, "gridsq": "X571Y206", "numresp": 133, "numpeople": 311.22, "numkeys": 0, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[572000.0, 206000.0], [571000.0, 206000.0], [571000.0, 207000.0], [572000.0, 207000.0], [572000.0, 206000.0]]]}}, {"id": "1404", "type": "Feature", "properties": {"easting": 498500.0, "northing": 207500.0, "gridsq": "X498Y207", "numresp": 20, "numpeople": 46.8, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 207000.0], [498000.0, 207000.0], [498000.0, 208000.0], [499000.0, 208000.0], [499000.0, 207000.0]]]}}, {"id": "1405", "type": "Feature", "properties": {"easting": 499500.0, "northing": 207500.0, "gridsq": "X499Y207", "numresp": 188, "numpeople": 439.92, "numkeys": 5, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 207000.0], [499000.0, 207000.0], [499000.0, 208000.0], [500000.0, 208000.0], [500000.0, 207000.0]]]}}, {"id": "1406", "type": "Feature", "properties": {"easting": 505500.0, "northing": 207500.0, "gridsq": "X505Y207", "numresp": 74, "numpeople": 173.16, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 207000.0], [505000.0, 207000.0], [505000.0, 208000.0], [506000.0, 208000.0], [506000.0, 207000.0]]]}}, {"id": "1407", "type": "Feature", "properties": {"easting": 507500.0, "northing": 207500.0, "gridsq": "X507Y207", "numresp": 116, "numpeople": 271.44, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 207000.0], [507000.0, 207000.0], [507000.0, 208000.0], [508000.0, 208000.0], [508000.0, 207000.0]]]}}, {"id": "1408", "type": "Feature", "properties": {"easting": 516500.0, "northing": 207500.0, "gridsq": "X516Y207", "numresp": 147, "numpeople": 343.98, "numkeys": 2, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 207000.0], [516000.0, 207000.0], [516000.0, 208000.0], [517000.0, 208000.0], [517000.0, 207000.0]]]}}, {"id": "1409", "type": "Feature", "properties": {"easting": 522500.0, "northing": 207500.0, "gridsq": "X522Y207", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 207000.0], [522000.0, 207000.0], [522000.0, 208000.0], [523000.0, 208000.0], [523000.0, 207000.0]]]}}, {"id": "1410", "type": "Feature", "properties": {"easting": 543500.0, "northing": 207500.0, "gridsq": "X543Y207", "numresp": 133, "numpeople": 311.22, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 207000.0], [543000.0, 207000.0], [543000.0, 208000.0], [544000.0, 208000.0], [544000.0, 207000.0]]]}}, {"id": "1411", "type": "Feature", "properties": {"easting": 544500.0, "northing": 207500.0, "gridsq": "X544Y207", "numresp": 126, "numpeople": 294.84, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 207000.0], [544000.0, 207000.0], [544000.0, 208000.0], [545000.0, 208000.0], [545000.0, 207000.0]]]}}, {"id": "1412", "type": "Feature", "properties": {"easting": 498500.0, "northing": 208500.0, "gridsq": "X498Y208", "numresp": 149, "numpeople": 348.66, "numkeys": 1, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 208000.0], [498000.0, 208000.0], [498000.0, 209000.0], [499000.0, 209000.0], [499000.0, 208000.0]]]}}, {"id": "1413", "type": "Feature", "properties": {"easting": 517500.0, "northing": 208500.0, "gridsq": "X517Y208", "numresp": 110, "numpeople": 257.4, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 208000.0], [517000.0, 208000.0], [517000.0, 209000.0], [518000.0, 209000.0], [518000.0, 208000.0]]]}}, {"id": "1414", "type": "Feature", "properties": {"easting": 520500.0, "northing": 208500.0, "gridsq": "X520Y208", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 208000.0], [520000.0, 208000.0], [520000.0, 209000.0], [521000.0, 209000.0], [521000.0, 208000.0]]]}}, {"id": "1415", "type": "Feature", "properties": {"easting": 521500.0, "northing": 208500.0, "gridsq": "X521Y208", "numresp": 105, "numpeople": 245.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 208000.0], [521000.0, 208000.0], [521000.0, 209000.0], [522000.0, 209000.0], [522000.0, 208000.0]]]}}, {"id": "1416", "type": "Feature", "properties": {"easting": 543500.0, "northing": 208500.0, "gridsq": "X543Y208", "numresp": 131, "numpeople": 306.54, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 208000.0], [543000.0, 208000.0], [543000.0, 209000.0], [544000.0, 209000.0], [544000.0, 208000.0]]]}}, {"id": "1417", "type": "Feature", "properties": {"easting": 544500.0, "northing": 208500.0, "gridsq": "X544Y208", "numresp": 136, "numpeople": 318.24, "numkeys": 0, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 208000.0], [544000.0, 208000.0], [544000.0, 209000.0], [545000.0, 209000.0], [545000.0, 208000.0]]]}}, {"id": "1418", "type": "Feature", "properties": {"easting": 545500.0, "northing": 208500.0, "gridsq": "X545Y208", "numresp": 174, "numpeople": 407.16, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 208000.0], [545000.0, 208000.0], [545000.0, 209000.0], [546000.0, 209000.0], [546000.0, 208000.0]]]}}, {"id": "1419", "type": "Feature", "properties": {"easting": 546500.0, "northing": 208500.0, "gridsq": "X546Y208", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 208000.0], [546000.0, 208000.0], [546000.0, 209000.0], [547000.0, 209000.0], [547000.0, 208000.0]]]}}, {"id": "1420", "type": "Feature", "properties": {"easting": 547500.0, "northing": 208500.0, "gridsq": "X547Y208", "numresp": 130, "numpeople": 304.2, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 208000.0], [547000.0, 208000.0], [547000.0, 209000.0], [548000.0, 209000.0], [548000.0, 208000.0]]]}}, {"id": "1421", "type": "Feature", "properties": {"easting": 571500.0, "northing": 208500.0, "gridsq": "X571Y208", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[572000.0, 208000.0], [571000.0, 208000.0], [571000.0, 209000.0], [572000.0, 209000.0], [572000.0, 208000.0]]]}}, {"id": "1422", "type": "Feature", "properties": {"easting": 585500.0, "northing": 208500.0, "gridsq": "X585Y208", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[586000.0, 208000.0], [585000.0, 208000.0], [585000.0, 209000.0], [586000.0, 209000.0], [586000.0, 208000.0]]]}}, {"id": "1423", "type": "Feature", "properties": {"easting": 517500.0, "northing": 209500.0, "gridsq": "X517Y209", "numresp": 94, "numpeople": 219.96, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 209000.0], [517000.0, 209000.0], [517000.0, 210000.0], [518000.0, 210000.0], [518000.0, 209000.0]]]}}, {"id": "1424", "type": "Feature", "properties": {"easting": 537500.0, "northing": 209500.0, "gridsq": "X537Y209", "numresp": 165, "numpeople": 386.1, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[538000.0, 209000.0], [537000.0, 209000.0], [537000.0, 210000.0], [538000.0, 210000.0], [538000.0, 209000.0]]]}}, {"id": "1425", "type": "Feature", "properties": {"easting": 546500.0, "northing": 209500.0, "gridsq": "X546Y209", "numresp": 270, "numpeople": 631.8, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 209000.0], [546000.0, 209000.0], [546000.0, 210000.0], [547000.0, 210000.0], [547000.0, 209000.0]]]}}, {"id": "1426", "type": "Feature", "properties": {"easting": 547500.0, "northing": 209500.0, "gridsq": "X547Y209", "numresp": 143, "numpeople": 334.62, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 209000.0], [547000.0, 209000.0], [547000.0, 210000.0], [548000.0, 210000.0], [548000.0, 209000.0]]]}}, {"id": "1427", "type": "Feature", "properties": {"easting": 357500.0, "northing": 210500.0, "gridsq": "X357Y210", "numresp": 75, "numpeople": 175.5, "numkeys": 1, "numnonresp": 65, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[358000.0, 210000.0], [357000.0, 210000.0], [357000.0, 211000.0], [358000.0, 211000.0], [358000.0, 210000.0]]]}}, {"id": "1428", "type": "Feature", "properties": {"easting": 543500.0, "northing": 210500.0, "gridsq": "X543Y210", "numresp": 88, "numpeople": 205.92, "numkeys": 4, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 210000.0], [543000.0, 210000.0], [543000.0, 211000.0], [544000.0, 211000.0], [544000.0, 210000.0]]]}}, {"id": "1429", "type": "Feature", "properties": {"easting": 544500.0, "northing": 210500.0, "gridsq": "X544Y210", "numresp": 187, "numpeople": 437.58, "numkeys": 12, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 210000.0], [544000.0, 210000.0], [544000.0, 211000.0], [545000.0, 211000.0], [545000.0, 210000.0]]]}}, {"id": "1430", "type": "Feature", "properties": {"easting": 545500.0, "northing": 210500.0, "gridsq": "X545Y210", "numresp": 126, "numpeople": 294.84, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 210000.0], [545000.0, 210000.0], [545000.0, 211000.0], [546000.0, 211000.0], [546000.0, 210000.0]]]}}, {"id": "1431", "type": "Feature", "properties": {"easting": 492500.0, "northing": 211500.0, "gridsq": "X492Y211", "numresp": 119, "numpeople": 278.46, "numkeys": 1, "numnonresp": 53, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[493000.0, 211000.0], [492000.0, 211000.0], [492000.0, 212000.0], [493000.0, 212000.0], [493000.0, 211000.0]]]}}, {"id": "1432", "type": "Feature", "properties": {"easting": 524500.0, "northing": 211500.0, "gridsq": "X524Y211", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 211000.0], [524000.0, 211000.0], [524000.0, 212000.0], [525000.0, 212000.0], [525000.0, 211000.0]]]}}, {"id": "1433", "type": "Feature", "properties": {"easting": 546500.0, "northing": 211500.0, "gridsq": "X546Y211", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 211000.0], [546000.0, 211000.0], [546000.0, 212000.0], [547000.0, 212000.0], [547000.0, 211000.0]]]}}, {"id": "1434", "type": "Feature", "properties": {"easting": 547500.0, "northing": 211500.0, "gridsq": "X547Y211", "numresp": 98, "numpeople": 229.32, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 211000.0], [547000.0, 211000.0], [547000.0, 212000.0], [548000.0, 212000.0], [548000.0, 211000.0]]]}}, {"id": "1435", "type": "Feature", "properties": {"easting": 548500.0, "northing": 211500.0, "gridsq": "X548Y211", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 211000.0], [548000.0, 211000.0], [548000.0, 212000.0], [549000.0, 212000.0], [549000.0, 211000.0]]]}}, {"id": "1436", "type": "Feature", "properties": {"easting": 480500.0, "northing": 212500.0, "gridsq": "X480Y212", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 212000.0], [480000.0, 212000.0], [480000.0, 213000.0], [481000.0, 213000.0], [481000.0, 212000.0]]]}}, {"id": "1437", "type": "Feature", "properties": {"easting": 482500.0, "northing": 212500.0, "gridsq": "X482Y212", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[483000.0, 212000.0], [482000.0, 212000.0], [482000.0, 213000.0], [483000.0, 213000.0], [483000.0, 212000.0]]]}}, {"id": "1438", "type": "Feature", "properties": {"easting": 492500.0, "northing": 212500.0, "gridsq": "X492Y212", "numresp": 156, "numpeople": 365.04, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[493000.0, 212000.0], [492000.0, 212000.0], [492000.0, 213000.0], [493000.0, 213000.0], [493000.0, 212000.0]]]}}, {"id": "1439", "type": "Feature", "properties": {"easting": 523500.0, "northing": 212500.0, "gridsq": "X523Y212", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 73, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 212000.0], [523000.0, 212000.0], [523000.0, 213000.0], [524000.0, 213000.0], [524000.0, 212000.0]]]}}, {"id": "1440", "type": "Feature", "properties": {"easting": 532500.0, "northing": 212500.0, "gridsq": "X532Y212", "numresp": 113, "numpeople": 264.42, "numkeys": 4, "numnonresp": 86, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 212000.0], [532000.0, 212000.0], [532000.0, 213000.0], [533000.0, 213000.0], [533000.0, 212000.0]]]}}, {"id": "1441", "type": "Feature", "properties": {"easting": 547500.0, "northing": 212500.0, "gridsq": "X547Y212", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 212000.0], [547000.0, 212000.0], [547000.0, 213000.0], [548000.0, 213000.0], [548000.0, 212000.0]]]}}, {"id": "1442", "type": "Feature", "properties": {"easting": 481500.0, "northing": 213500.0, "gridsq": "X481Y213", "numresp": 187, "numpeople": 437.58, "numkeys": 1, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[482000.0, 213000.0], [481000.0, 213000.0], [481000.0, 214000.0], [482000.0, 214000.0], [482000.0, 213000.0]]]}}, {"id": "1443", "type": "Feature", "properties": {"easting": 482500.0, "northing": 213500.0, "gridsq": "X482Y213", "numresp": 83, "numpeople": 194.22, "numkeys": 1, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[483000.0, 213000.0], [482000.0, 213000.0], [482000.0, 214000.0], [483000.0, 214000.0], [483000.0, 213000.0]]]}}, {"id": "1444", "type": "Feature", "properties": {"easting": 514500.0, "northing": 213500.0, "gridsq": "X514Y213", "numresp": 82, "numpeople": 191.88, "numkeys": 2, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[515000.0, 213000.0], [514000.0, 213000.0], [514000.0, 214000.0], [515000.0, 214000.0], [515000.0, 213000.0]]]}}, {"id": "1445", "type": "Feature", "properties": {"easting": 533500.0, "northing": 213500.0, "gridsq": "X533Y213", "numresp": 27, "numpeople": 63.18, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 213000.0], [533000.0, 213000.0], [533000.0, 214000.0], [534000.0, 214000.0], [534000.0, 213000.0]]]}}, {"id": "1446", "type": "Feature", "properties": {"easting": 581500.0, "northing": 213500.0, "gridsq": "X581Y213", "numresp": 79, "numpeople": 184.86, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 213000.0], [581000.0, 213000.0], [581000.0, 214000.0], [582000.0, 214000.0], [582000.0, 213000.0]]]}}, {"id": "1447", "type": "Feature", "properties": {"easting": 513500.0, "northing": 214500.0, "gridsq": "X513Y214", "numresp": 74, "numpeople": 173.16, "numkeys": 0, "numnonresp": 60, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[514000.0, 214000.0], [513000.0, 214000.0], [513000.0, 215000.0], [514000.0, 215000.0], [514000.0, 214000.0]]]}}, {"id": "1448", "type": "Feature", "properties": {"easting": 536500.0, "northing": 214500.0, "gridsq": "X536Y214", "numresp": 149, "numpeople": 348.66, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 214000.0], [536000.0, 214000.0], [536000.0, 215000.0], [537000.0, 215000.0], [537000.0, 214000.0]]]}}, {"id": "1449", "type": "Feature", "properties": {"easting": 548500.0, "northing": 214500.0, "gridsq": "X548Y214", "numresp": 167, "numpeople": 390.78, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 214000.0], [548000.0, 214000.0], [548000.0, 215000.0], [549000.0, 215000.0], [549000.0, 214000.0]]]}}, {"id": "1450", "type": "Feature", "properties": {"easting": 549500.0, "northing": 214500.0, "gridsq": "X549Y214", "numresp": 249, "numpeople": 582.66, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[550000.0, 214000.0], [549000.0, 214000.0], [549000.0, 215000.0], [550000.0, 215000.0], [550000.0, 214000.0]]]}}, {"id": "1451", "type": "Feature", "properties": {"easting": 582500.0, "northing": 214500.0, "gridsq": "X582Y214", "numresp": 18, "numpeople": 42.12, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[583000.0, 214000.0], [582000.0, 214000.0], [582000.0, 215000.0], [583000.0, 215000.0], [583000.0, 214000.0]]]}}, {"id": "1452", "type": "Feature", "properties": {"easting": 360500.0, "northing": 215500.0, "gridsq": "X360Y215", "numresp": 29, "numpeople": 67.86, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[361000.0, 215000.0], [360000.0, 215000.0], [360000.0, 216000.0], [361000.0, 216000.0], [361000.0, 215000.0]]]}}, {"id": "1453", "type": "Feature", "properties": {"easting": 478500.0, "northing": 215500.0, "gridsq": "X478Y215", "numresp": 147, "numpeople": 343.98, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[479000.0, 215000.0], [478000.0, 215000.0], [478000.0, 216000.0], [479000.0, 216000.0], [479000.0, 215000.0]]]}}, {"id": "1454", "type": "Feature", "properties": {"easting": 512500.0, "northing": 215500.0, "gridsq": "X512Y215", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 215000.0], [512000.0, 215000.0], [512000.0, 216000.0], [513000.0, 216000.0], [513000.0, 215000.0]]]}}, {"id": "1455", "type": "Feature", "properties": {"easting": 383500.0, "northing": 216500.0, "gridsq": "X383Y216", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 216000.0], [383000.0, 216000.0], [383000.0, 217000.0], [384000.0, 217000.0], [384000.0, 216000.0]]]}}, {"id": "1456", "type": "Feature", "properties": {"easting": 506500.0, "northing": 216500.0, "gridsq": "X506Y216", "numresp": 100, "numpeople": 234.0, "numkeys": 2, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 216000.0], [506000.0, 216000.0], [506000.0, 217000.0], [507000.0, 217000.0], [507000.0, 216000.0]]]}}, {"id": "1457", "type": "Feature", "properties": {"easting": 522500.0, "northing": 216500.0, "gridsq": "X522Y216", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 216000.0], [522000.0, 216000.0], [522000.0, 217000.0], [523000.0, 217000.0], [523000.0, 216000.0]]]}}, {"id": "1458", "type": "Feature", "properties": {"easting": 589500.0, "northing": 216500.0, "gridsq": "X589Y216", "numresp": 49, "numpeople": 114.66, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[590000.0, 216000.0], [589000.0, 216000.0], [589000.0, 217000.0], [590000.0, 217000.0], [590000.0, 216000.0]]]}}, {"id": "1459", "type": "Feature", "properties": {"easting": 382500.0, "northing": 217500.0, "gridsq": "X382Y217", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 83, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[383000.0, 217000.0], [382000.0, 217000.0], [382000.0, 218000.0], [383000.0, 218000.0], [383000.0, 217000.0]]]}}, {"id": "1460", "type": "Feature", "properties": {"easting": 383500.0, "northing": 217500.0, "gridsq": "X383Y217", "numresp": 233, "numpeople": 545.22, "numkeys": 1, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 217000.0], [383000.0, 217000.0], [383000.0, 218000.0], [384000.0, 218000.0], [384000.0, 217000.0]]]}}, {"id": "1461", "type": "Feature", "properties": {"easting": 384500.0, "northing": 217500.0, "gridsq": "X384Y217", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 217000.0], [384000.0, 217000.0], [384000.0, 218000.0], [385000.0, 218000.0], [385000.0, 217000.0]]]}}, {"id": "1462", "type": "Feature", "properties": {"easting": 617500.0, "northing": 217500.0, "gridsq": "X617Y217", "numresp": 147, "numpeople": 343.98, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[618000.0, 217000.0], [617000.0, 217000.0], [617000.0, 218000.0], [618000.0, 218000.0], [618000.0, 217000.0]]]}}, {"id": "1463", "type": "Feature", "properties": {"easting": 517500.0, "northing": 218500.0, "gridsq": "X517Y218", "numresp": 181, "numpeople": 423.54, "numkeys": 1, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 218000.0], [517000.0, 218000.0], [517000.0, 219000.0], [518000.0, 219000.0], [518000.0, 218000.0]]]}}, {"id": "1464", "type": "Feature", "properties": {"easting": 456500.0, "northing": 219500.0, "gridsq": "X456Y219", "numresp": 17, "numpeople": 39.78, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 219000.0], [456000.0, 219000.0], [456000.0, 220000.0], [457000.0, 220000.0], [457000.0, 219000.0]]]}}, {"id": "1465", "type": "Feature", "properties": {"easting": 416500.0, "northing": 220500.0, "gridsq": "X416Y220", "numresp": 21, "numpeople": 49.14, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 220000.0], [416000.0, 220000.0], [416000.0, 221000.0], [417000.0, 221000.0], [417000.0, 220000.0]]]}}, {"id": "1466", "type": "Feature", "properties": {"easting": 503500.0, "northing": 220500.0, "gridsq": "X503Y220", "numresp": 92, "numpeople": 215.28, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[504000.0, 220000.0], [503000.0, 220000.0], [503000.0, 221000.0], [504000.0, 221000.0], [504000.0, 220000.0]]]}}, {"id": "1467", "type": "Feature", "properties": {"easting": 508500.0, "northing": 220500.0, "gridsq": "X508Y220", "numresp": 129, "numpeople": 301.86, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 220000.0], [508000.0, 220000.0], [508000.0, 221000.0], [509000.0, 221000.0], [509000.0, 220000.0]]]}}, {"id": "1468", "type": "Feature", "properties": {"easting": 548500.0, "northing": 220500.0, "gridsq": "X548Y220", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 220000.0], [548000.0, 220000.0], [548000.0, 221000.0], [549000.0, 221000.0], [549000.0, 220000.0]]]}}, {"id": "1469", "type": "Feature", "properties": {"easting": 394500.0, "northing": 221500.0, "gridsq": "X394Y221", "numresp": 97, "numpeople": 226.98, "numkeys": 1, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 221000.0], [394000.0, 221000.0], [394000.0, 222000.0], [395000.0, 222000.0], [395000.0, 221000.0]]]}}, {"id": "1470", "type": "Feature", "properties": {"easting": 395500.0, "northing": 221500.0, "gridsq": "X395Y221", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 221000.0], [395000.0, 221000.0], [395000.0, 222000.0], [396000.0, 222000.0], [396000.0, 221000.0]]]}}, {"id": "1471", "type": "Feature", "properties": {"easting": 502500.0, "northing": 221500.0, "gridsq": "X502Y221", "numresp": 111, "numpeople": 259.74, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 221000.0], [502000.0, 221000.0], [502000.0, 222000.0], [503000.0, 222000.0], [503000.0, 221000.0]]]}}, {"id": "1472", "type": "Feature", "properties": {"easting": 508500.0, "northing": 221500.0, "gridsq": "X508Y221", "numresp": 174, "numpeople": 407.16, "numkeys": 3, "numnonresp": 105, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 221000.0], [508000.0, 221000.0], [508000.0, 222000.0], [509000.0, 222000.0], [509000.0, 221000.0]]]}}, {"id": "1473", "type": "Feature", "properties": {"easting": 509500.0, "northing": 221500.0, "gridsq": "X509Y221", "numresp": 53, "numpeople": 124.02, "numkeys": 5, "numnonresp": 130, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[510000.0, 221000.0], [509000.0, 221000.0], [509000.0, 222000.0], [510000.0, 222000.0], [510000.0, 221000.0]]]}}, {"id": "1474", "type": "Feature", "properties": {"easting": 548500.0, "northing": 221500.0, "gridsq": "X548Y221", "numresp": 143, "numpeople": 334.62, "numkeys": 1, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[549000.0, 221000.0], [548000.0, 221000.0], [548000.0, 222000.0], [549000.0, 222000.0], [549000.0, 221000.0]]]}}, {"id": "1475", "type": "Feature", "properties": {"easting": 563500.0, "northing": 221500.0, "gridsq": "X563Y221", "numresp": 39, "numpeople": 91.26, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[564000.0, 221000.0], [563000.0, 221000.0], [563000.0, 222000.0], [564000.0, 222000.0], [564000.0, 221000.0]]]}}, {"id": "1476", "type": "Feature", "properties": {"easting": 604500.0, "northing": 221500.0, "gridsq": "X604Y221", "numresp": 25, "numpeople": 58.5, "numkeys": 0, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[605000.0, 221000.0], [604000.0, 221000.0], [604000.0, 222000.0], [605000.0, 222000.0], [605000.0, 221000.0]]]}}, {"id": "1477", "type": "Feature", "properties": {"easting": 394500.0, "northing": 222500.0, "gridsq": "X394Y222", "numresp": 152, "numpeople": 355.68, "numkeys": 2, "numnonresp": 149, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 222000.0], [394000.0, 222000.0], [394000.0, 223000.0], [395000.0, 223000.0], [395000.0, 222000.0]]]}}, {"id": "1478", "type": "Feature", "properties": {"easting": 395500.0, "northing": 222500.0, "gridsq": "X395Y222", "numresp": 164, "numpeople": 383.76, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 222000.0], [395000.0, 222000.0], [395000.0, 223000.0], [396000.0, 223000.0], [396000.0, 222000.0]]]}}, {"id": "1479", "type": "Feature", "properties": {"easting": 396500.0, "northing": 222500.0, "gridsq": "X396Y222", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 222000.0], [396000.0, 222000.0], [396000.0, 223000.0], [397000.0, 223000.0], [397000.0, 222000.0]]]}}, {"id": "1480", "type": "Feature", "properties": {"easting": 500500.0, "northing": 222500.0, "gridsq": "X500Y222", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[501000.0, 222000.0], [500000.0, 222000.0], [500000.0, 223000.0], [501000.0, 223000.0], [501000.0, 222000.0]]]}}, {"id": "1481", "type": "Feature", "properties": {"easting": 502500.0, "northing": 222500.0, "gridsq": "X502Y222", "numresp": 77, "numpeople": 180.18, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 222000.0], [502000.0, 222000.0], [502000.0, 223000.0], [503000.0, 223000.0], [503000.0, 222000.0]]]}}, {"id": "1482", "type": "Feature", "properties": {"easting": 503500.0, "northing": 222500.0, "gridsq": "X503Y222", "numresp": 110, "numpeople": 257.4, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[504000.0, 222000.0], [503000.0, 222000.0], [503000.0, 223000.0], [504000.0, 223000.0], [504000.0, 222000.0]]]}}, {"id": "1483", "type": "Feature", "properties": {"easting": 504500.0, "northing": 222500.0, "gridsq": "X504Y222", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 222000.0], [504000.0, 222000.0], [504000.0, 223000.0], [505000.0, 223000.0], [505000.0, 222000.0]]]}}, {"id": "1484", "type": "Feature", "properties": {"easting": 507500.0, "northing": 222500.0, "gridsq": "X507Y222", "numresp": 41, "numpeople": 95.94, "numkeys": 0, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 222000.0], [507000.0, 222000.0], [507000.0, 223000.0], [508000.0, 223000.0], [508000.0, 222000.0]]]}}, {"id": "1485", "type": "Feature", "properties": {"easting": 392500.0, "northing": 223500.0, "gridsq": "X392Y223", "numresp": 122, "numpeople": 285.48, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 223000.0], [392000.0, 223000.0], [392000.0, 224000.0], [393000.0, 224000.0], [393000.0, 223000.0]]]}}, {"id": "1486", "type": "Feature", "properties": {"easting": 506500.0, "northing": 223500.0, "gridsq": "X506Y223", "numresp": 141, "numpeople": 329.94, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 223000.0], [506000.0, 223000.0], [506000.0, 224000.0], [507000.0, 224000.0], [507000.0, 223000.0]]]}}, {"id": "1487", "type": "Feature", "properties": {"easting": 524500.0, "northing": 223500.0, "gridsq": "X524Y223", "numresp": 78, "numpeople": 182.52, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 223000.0], [524000.0, 223000.0], [524000.0, 224000.0], [525000.0, 224000.0], [525000.0, 223000.0]]]}}, {"id": "1488", "type": "Feature", "properties": {"easting": 526500.0, "northing": 223500.0, "gridsq": "X526Y223", "numresp": 94, "numpeople": 219.96, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 223000.0], [526000.0, 223000.0], [526000.0, 224000.0], [527000.0, 224000.0], [527000.0, 223000.0]]]}}, {"id": "1489", "type": "Feature", "properties": {"easting": 538500.0, "northing": 223500.0, "gridsq": "X538Y223", "numresp": 120, "numpeople": 280.8, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[539000.0, 223000.0], [538000.0, 223000.0], [538000.0, 224000.0], [539000.0, 224000.0], [539000.0, 223000.0]]]}}, {"id": "1490", "type": "Feature", "properties": {"easting": 601500.0, "northing": 223500.0, "gridsq": "X601Y223", "numresp": 28, "numpeople": 65.52, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[602000.0, 223000.0], [601000.0, 223000.0], [601000.0, 224000.0], [602000.0, 224000.0], [602000.0, 223000.0]]]}}, {"id": "1491", "type": "Feature", "properties": {"easting": 602500.0, "northing": 223500.0, "gridsq": "X602Y223", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[603000.0, 223000.0], [602000.0, 223000.0], [602000.0, 224000.0], [603000.0, 224000.0], [603000.0, 223000.0]]]}}, {"id": "1492", "type": "Feature", "properties": {"easting": 360500.0, "northing": 224500.0, "gridsq": "X360Y224", "numresp": 73, "numpeople": 170.82, "numkeys": 1, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[361000.0, 224000.0], [360000.0, 224000.0], [360000.0, 225000.0], [361000.0, 225000.0], [361000.0, 224000.0]]]}}, {"id": "1493", "type": "Feature", "properties": {"easting": 491500.0, "northing": 224500.0, "gridsq": "X491Y224", "numresp": 142, "numpeople": 332.28, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[492000.0, 224000.0], [491000.0, 224000.0], [491000.0, 225000.0], [492000.0, 225000.0], [492000.0, 224000.0]]]}}, {"id": "1494", "type": "Feature", "properties": {"easting": 494500.0, "northing": 224500.0, "gridsq": "X494Y224", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[495000.0, 224000.0], [494000.0, 224000.0], [494000.0, 225000.0], [495000.0, 225000.0], [495000.0, 224000.0]]]}}, {"id": "1495", "type": "Feature", "properties": {"easting": 505500.0, "northing": 224500.0, "gridsq": "X505Y224", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 224000.0], [505000.0, 224000.0], [505000.0, 225000.0], [506000.0, 225000.0], [506000.0, 224000.0]]]}}, {"id": "1496", "type": "Feature", "properties": {"easting": 523500.0, "northing": 224500.0, "gridsq": "X523Y224", "numresp": 21, "numpeople": 49.14, "numkeys": 1, "numnonresp": 145, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 224000.0], [523000.0, 224000.0], [523000.0, 225000.0], [524000.0, 225000.0], [524000.0, 224000.0]]]}}, {"id": "1497", "type": "Feature", "properties": {"easting": 551500.0, "northing": 224500.0, "gridsq": "X551Y224", "numresp": 17, "numpeople": 39.78, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 224000.0], [551000.0, 224000.0], [551000.0, 225000.0], [552000.0, 225000.0], [552000.0, 224000.0]]]}}, {"id": "1498", "type": "Feature", "properties": {"easting": 599500.0, "northing": 224500.0, "gridsq": "X599Y224", "numresp": 60, "numpeople": 140.4, "numkeys": 1, "numnonresp": 44, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[600000.0, 224000.0], [599000.0, 224000.0], [599000.0, 225000.0], [600000.0, 225000.0], [600000.0, 224000.0]]]}}, {"id": "1499", "type": "Feature", "properties": {"easting": 600500.0, "northing": 224500.0, "gridsq": "X600Y224", "numresp": 103, "numpeople": 241.02, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[601000.0, 224000.0], [600000.0, 224000.0], [600000.0, 225000.0], [601000.0, 225000.0], [601000.0, 224000.0]]]}}, {"id": "1500", "type": "Feature", "properties": {"easting": 601500.0, "northing": 224500.0, "gridsq": "X601Y224", "numresp": 13, "numpeople": 30.42, "numkeys": 3, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[602000.0, 224000.0], [601000.0, 224000.0], [601000.0, 225000.0], [602000.0, 225000.0], [602000.0, 224000.0]]]}}, {"id": "1501", "type": "Feature", "properties": {"easting": 490500.0, "northing": 225500.0, "gridsq": "X490Y225", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[491000.0, 225000.0], [490000.0, 225000.0], [490000.0, 226000.0], [491000.0, 226000.0], [491000.0, 225000.0]]]}}, {"id": "1502", "type": "Feature", "properties": {"easting": 492500.0, "northing": 225500.0, "gridsq": "X492Y225", "numresp": 108, "numpeople": 252.72, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[493000.0, 225000.0], [492000.0, 225000.0], [492000.0, 226000.0], [493000.0, 226000.0], [493000.0, 225000.0]]]}}, {"id": "1503", "type": "Feature", "properties": {"easting": 493500.0, "northing": 225500.0, "gridsq": "X493Y225", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[494000.0, 225000.0], [493000.0, 225000.0], [493000.0, 226000.0], [494000.0, 226000.0], [494000.0, 225000.0]]]}}, {"id": "1504", "type": "Feature", "properties": {"easting": 504500.0, "northing": 225500.0, "gridsq": "X504Y225", "numresp": 2, "numpeople": 4.68, "numkeys": 4, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 225000.0], [504000.0, 225000.0], [504000.0, 226000.0], [505000.0, 226000.0], [505000.0, 225000.0]]]}}, {"id": "1505", "type": "Feature", "properties": {"easting": 505500.0, "northing": 225500.0, "gridsq": "X505Y225", "numresp": 132, "numpeople": 308.88, "numkeys": 2, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 225000.0], [505000.0, 225000.0], [505000.0, 226000.0], [506000.0, 226000.0], [506000.0, 225000.0]]]}}, {"id": "1506", "type": "Feature", "properties": {"easting": 506500.0, "northing": 225500.0, "gridsq": "X506Y225", "numresp": 246, "numpeople": 575.64, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 225000.0], [506000.0, 225000.0], [506000.0, 226000.0], [507000.0, 226000.0], [507000.0, 225000.0]]]}}, {"id": "1507", "type": "Feature", "properties": {"easting": 507500.0, "northing": 225500.0, "gridsq": "X507Y225", "numresp": 159, "numpeople": 372.06, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 225000.0], [507000.0, 225000.0], [507000.0, 226000.0], [508000.0, 226000.0], [508000.0, 225000.0]]]}}, {"id": "1508", "type": "Feature", "properties": {"easting": 599500.0, "northing": 225500.0, "gridsq": "X599Y225", "numresp": 68, "numpeople": 159.12, "numkeys": 2, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[600000.0, 225000.0], [599000.0, 225000.0], [599000.0, 226000.0], [600000.0, 226000.0], [600000.0, 225000.0]]]}}, {"id": "1509", "type": "Feature", "properties": {"easting": 600500.0, "northing": 225500.0, "gridsq": "X600Y225", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[601000.0, 225000.0], [600000.0, 225000.0], [600000.0, 226000.0], [601000.0, 226000.0], [601000.0, 225000.0]]]}}, {"id": "1510", "type": "Feature", "properties": {"easting": 601500.0, "northing": 225500.0, "gridsq": "X601Y225", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[602000.0, 225000.0], [601000.0, 225000.0], [601000.0, 226000.0], [602000.0, 226000.0], [602000.0, 225000.0]]]}}, {"id": "1511", "type": "Feature", "properties": {"easting": 497500.0, "northing": 226500.0, "gridsq": "X497Y226", "numresp": 95, "numpeople": 222.3, "numkeys": 1, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[498000.0, 226000.0], [497000.0, 226000.0], [497000.0, 227000.0], [498000.0, 227000.0], [498000.0, 226000.0]]]}}, {"id": "1512", "type": "Feature", "properties": {"easting": 601500.0, "northing": 226500.0, "gridsq": "X601Y226", "numresp": 50, "numpeople": 117.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[602000.0, 226000.0], [601000.0, 226000.0], [601000.0, 227000.0], [602000.0, 227000.0], [602000.0, 226000.0]]]}}, {"id": "1513", "type": "Feature", "properties": {"easting": 396500.0, "northing": 227500.0, "gridsq": "X396Y227", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 227000.0], [396000.0, 227000.0], [396000.0, 228000.0], [397000.0, 228000.0], [397000.0, 227000.0]]]}}, {"id": "1514", "type": "Feature", "properties": {"easting": 518500.0, "northing": 228500.0, "gridsq": "X518Y228", "numresp": 64, "numpeople": 149.76, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 228000.0], [518000.0, 228000.0], [518000.0, 229000.0], [519000.0, 229000.0], [519000.0, 228000.0]]]}}, {"id": "1515", "type": "Feature", "properties": {"easting": 519500.0, "northing": 228500.0, "gridsq": "X519Y228", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 228000.0], [519000.0, 228000.0], [519000.0, 229000.0], [520000.0, 229000.0], [520000.0, 228000.0]]]}}, {"id": "1516", "type": "Feature", "properties": {"easting": 403500.0, "northing": 229500.0, "gridsq": "X403Y229", "numresp": 11, "numpeople": 25.74, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[404000.0, 229000.0], [403000.0, 229000.0], [403000.0, 230000.0], [404000.0, 230000.0], [404000.0, 229000.0]]]}}, {"id": "1517", "type": "Feature", "properties": {"easting": 518500.0, "northing": 229500.0, "gridsq": "X518Y229", "numresp": 210, "numpeople": 491.4, "numkeys": 1, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 229000.0], [518000.0, 229000.0], [518000.0, 230000.0], [519000.0, 230000.0], [519000.0, 229000.0]]]}}, {"id": "1518", "type": "Feature", "properties": {"easting": 561500.0, "northing": 230500.0, "gridsq": "X561Y230", "numresp": 60, "numpeople": 140.4, "numkeys": 2, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[562000.0, 230000.0], [561000.0, 230000.0], [561000.0, 231000.0], [562000.0, 231000.0], [562000.0, 230000.0]]]}}, {"id": "1519", "type": "Feature", "properties": {"easting": 581500.0, "northing": 230500.0, "gridsq": "X581Y230", "numresp": 109, "numpeople": 255.06, "numkeys": 2, "numnonresp": 71, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[582000.0, 230000.0], [581000.0, 230000.0], [581000.0, 231000.0], [582000.0, 231000.0], [582000.0, 230000.0]]]}}, {"id": "1520", "type": "Feature", "properties": {"easting": 507500.0, "northing": 231500.0, "gridsq": "X507Y231", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 231000.0], [507000.0, 231000.0], [507000.0, 232000.0], [508000.0, 232000.0], [508000.0, 231000.0]]]}}, {"id": "1521", "type": "Feature", "properties": {"easting": 420500.0, "northing": 232500.0, "gridsq": "X420Y232", "numresp": 79, "numpeople": 184.86, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[421000.0, 232000.0], [420000.0, 232000.0], [420000.0, 233000.0], [421000.0, 233000.0], [421000.0, 232000.0]]]}}, {"id": "1522", "type": "Feature", "properties": {"easting": 485500.0, "northing": 232500.0, "gridsq": "X485Y232", "numresp": 29, "numpeople": 67.86, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 232000.0], [485000.0, 232000.0], [485000.0, 233000.0], [486000.0, 233000.0], [486000.0, 232000.0]]]}}, {"id": "1523", "type": "Feature", "properties": {"easting": 522500.0, "northing": 232500.0, "gridsq": "X522Y232", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 232000.0], [522000.0, 232000.0], [522000.0, 233000.0], [523000.0, 233000.0], [523000.0, 232000.0]]]}}, {"id": "1524", "type": "Feature", "properties": {"easting": 486500.0, "northing": 233500.0, "gridsq": "X486Y233", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 233000.0], [486000.0, 233000.0], [486000.0, 234000.0], [487000.0, 234000.0], [487000.0, 233000.0]]]}}, {"id": "1525", "type": "Feature", "properties": {"easting": 487500.0, "northing": 233500.0, "gridsq": "X487Y233", "numresp": 36, "numpeople": 84.24, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 233000.0], [487000.0, 233000.0], [487000.0, 234000.0], [488000.0, 234000.0], [488000.0, 233000.0]]]}}, {"id": "1526", "type": "Feature", "properties": {"easting": 522500.0, "northing": 233500.0, "gridsq": "X522Y233", "numresp": 111, "numpeople": 259.74, "numkeys": 2, "numnonresp": 62, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[523000.0, 233000.0], [522000.0, 233000.0], [522000.0, 234000.0], [523000.0, 234000.0], [523000.0, 233000.0]]]}}, {"id": "1527", "type": "Feature", "properties": {"easting": 524500.0, "northing": 233500.0, "gridsq": "X524Y233", "numresp": 116, "numpeople": 271.44, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 233000.0], [524000.0, 233000.0], [524000.0, 234000.0], [525000.0, 234000.0], [525000.0, 233000.0]]]}}, {"id": "1528", "type": "Feature", "properties": {"easting": 629500.0, "northing": 233500.0, "gridsq": "X629Y233", "numresp": 100, "numpeople": 234.0, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[630000.0, 233000.0], [629000.0, 233000.0], [629000.0, 234000.0], [630000.0, 234000.0], [630000.0, 233000.0]]]}}, {"id": "1529", "type": "Feature", "properties": {"easting": 485500.0, "northing": 234500.0, "gridsq": "X485Y234", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 234000.0], [485000.0, 234000.0], [485000.0, 235000.0], [486000.0, 235000.0], [486000.0, 234000.0]]]}}, {"id": "1530", "type": "Feature", "properties": {"easting": 486500.0, "northing": 234500.0, "gridsq": "X486Y234", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 234000.0], [486000.0, 234000.0], [486000.0, 235000.0], [487000.0, 235000.0], [487000.0, 234000.0]]]}}, {"id": "1531", "type": "Feature", "properties": {"easting": 524500.0, "northing": 234500.0, "gridsq": "X524Y234", "numresp": 199, "numpeople": 465.66, "numkeys": 0, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 234000.0], [524000.0, 234000.0], [524000.0, 235000.0], [525000.0, 235000.0], [525000.0, 234000.0]]]}}, {"id": "1532", "type": "Feature", "properties": {"easting": 577500.0, "northing": 234500.0, "gridsq": "X577Y234", "numresp": 33, "numpeople": 77.22, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[578000.0, 234000.0], [577000.0, 234000.0], [577000.0, 235000.0], [578000.0, 235000.0], [578000.0, 234000.0]]]}}, {"id": "1533", "type": "Feature", "properties": {"easting": 628500.0, "northing": 234500.0, "gridsq": "X628Y234", "numresp": 50, "numpeople": 117.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[629000.0, 234000.0], [628000.0, 234000.0], [628000.0, 235000.0], [629000.0, 235000.0], [629000.0, 234000.0]]]}}, {"id": "1534", "type": "Feature", "properties": {"easting": 629500.0, "northing": 234500.0, "gridsq": "X629Y234", "numresp": 105, "numpeople": 245.7, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[630000.0, 234000.0], [629000.0, 234000.0], [629000.0, 235000.0], [630000.0, 235000.0], [630000.0, 234000.0]]]}}, {"id": "1535", "type": "Feature", "properties": {"easting": 486500.0, "northing": 236500.0, "gridsq": "X486Y236", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 236000.0], [486000.0, 236000.0], [486000.0, 237000.0], [487000.0, 237000.0], [487000.0, 236000.0]]]}}, {"id": "1536", "type": "Feature", "properties": {"easting": 482500.0, "northing": 237500.0, "gridsq": "X482Y237", "numresp": 63, "numpeople": 147.42, "numkeys": 6, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[483000.0, 237000.0], [482000.0, 237000.0], [482000.0, 238000.0], [483000.0, 238000.0], [483000.0, 237000.0]]]}}, {"id": "1537", "type": "Feature", "properties": {"easting": 484500.0, "northing": 238500.0, "gridsq": "X484Y238", "numresp": 5, "numpeople": 11.7, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 238000.0], [484000.0, 238000.0], [484000.0, 239000.0], [485000.0, 239000.0], [485000.0, 238000.0]]]}}, {"id": "1538", "type": "Feature", "properties": {"easting": 485500.0, "northing": 238500.0, "gridsq": "X485Y238", "numresp": 105, "numpeople": 245.7, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 238000.0], [485000.0, 238000.0], [485000.0, 239000.0], [486000.0, 239000.0], [486000.0, 238000.0]]]}}, {"id": "1539", "type": "Feature", "properties": {"easting": 490500.0, "northing": 238500.0, "gridsq": "X490Y238", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[491000.0, 238000.0], [490000.0, 238000.0], [490000.0, 239000.0], [491000.0, 239000.0], [491000.0, 238000.0]]]}}, {"id": "1540", "type": "Feature", "properties": {"easting": 553500.0, "northing": 238500.0, "gridsq": "X553Y238", "numresp": 123, "numpeople": 287.82, "numkeys": 2, "numnonresp": 85, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 238000.0], [553000.0, 238000.0], [553000.0, 239000.0], [554000.0, 239000.0], [554000.0, 238000.0]]]}}, {"id": "1541", "type": "Feature", "properties": {"easting": 425500.0, "northing": 240500.0, "gridsq": "X425Y240", "numresp": 104, "numpeople": 243.36, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[426000.0, 240000.0], [425000.0, 240000.0], [425000.0, 241000.0], [426000.0, 241000.0], [426000.0, 240000.0]]]}}, {"id": "1542", "type": "Feature", "properties": {"easting": 445500.0, "northing": 240500.0, "gridsq": "X445Y240", "numresp": 129, "numpeople": 301.86, "numkeys": 3, "numnonresp": 70, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[446000.0, 240000.0], [445000.0, 240000.0], [445000.0, 241000.0], [446000.0, 241000.0], [446000.0, 240000.0]]]}}, {"id": "1543", "type": "Feature", "properties": {"easting": 446500.0, "northing": 240500.0, "gridsq": "X446Y240", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[447000.0, 240000.0], [446000.0, 240000.0], [446000.0, 241000.0], [447000.0, 241000.0], [447000.0, 240000.0]]]}}, {"id": "1544", "type": "Feature", "properties": {"easting": 487500.0, "northing": 240500.0, "gridsq": "X487Y240", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 240000.0], [487000.0, 240000.0], [487000.0, 241000.0], [488000.0, 241000.0], [488000.0, 240000.0]]]}}, {"id": "1545", "type": "Feature", "properties": {"easting": 535500.0, "northing": 240500.0, "gridsq": "X535Y240", "numresp": 71, "numpeople": 166.14, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 240000.0], [535000.0, 240000.0], [535000.0, 241000.0], [536000.0, 241000.0], [536000.0, 240000.0]]]}}, {"id": "1546", "type": "Feature", "properties": {"easting": 350500.0, "northing": 241500.0, "gridsq": "X350Y241", "numresp": 8, "numpeople": 18.72, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[351000.0, 241000.0], [350000.0, 241000.0], [350000.0, 242000.0], [351000.0, 242000.0], [351000.0, 241000.0]]]}}, {"id": "1547", "type": "Feature", "properties": {"easting": 444500.0, "northing": 241500.0, "gridsq": "X444Y241", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[445000.0, 241000.0], [444000.0, 241000.0], [444000.0, 242000.0], [445000.0, 242000.0], [445000.0, 241000.0]]]}}, {"id": "1548", "type": "Feature", "properties": {"easting": 445500.0, "northing": 241500.0, "gridsq": "X445Y241", "numresp": 27, "numpeople": 63.18, "numkeys": 3, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[446000.0, 241000.0], [445000.0, 241000.0], [445000.0, 242000.0], [446000.0, 242000.0], [446000.0, 241000.0]]]}}, {"id": "1549", "type": "Feature", "properties": {"easting": 535500.0, "northing": 241500.0, "gridsq": "X535Y241", "numresp": 114, "numpeople": 266.76, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[536000.0, 241000.0], [535000.0, 241000.0], [535000.0, 242000.0], [536000.0, 242000.0], [536000.0, 241000.0]]]}}, {"id": "1550", "type": "Feature", "properties": {"easting": 587500.0, "northing": 241500.0, "gridsq": "X587Y241", "numresp": 137, "numpeople": 320.58, "numkeys": 2, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[588000.0, 241000.0], [587000.0, 241000.0], [587000.0, 242000.0], [588000.0, 242000.0], [588000.0, 241000.0]]]}}, {"id": "1551", "type": "Feature", "properties": {"easting": 377500.0, "northing": 242500.0, "gridsq": "X377Y242", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 242000.0], [377000.0, 242000.0], [377000.0, 243000.0], [378000.0, 243000.0], [378000.0, 242000.0]]]}}, {"id": "1552", "type": "Feature", "properties": {"easting": 412500.0, "northing": 242500.0, "gridsq": "X412Y242", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[413000.0, 242000.0], [412000.0, 242000.0], [412000.0, 243000.0], [413000.0, 243000.0], [413000.0, 242000.0]]]}}, {"id": "1553", "type": "Feature", "properties": {"easting": 602500.0, "northing": 242500.0, "gridsq": "X602Y242", "numresp": 58, "numpeople": 135.72, "numkeys": 1, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[603000.0, 242000.0], [602000.0, 242000.0], [602000.0, 243000.0], [603000.0, 243000.0], [603000.0, 242000.0]]]}}, {"id": "1554", "type": "Feature", "properties": {"easting": 616500.0, "northing": 243500.0, "gridsq": "X616Y243", "numresp": 33, "numpeople": 77.22, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[617000.0, 243000.0], [616000.0, 243000.0], [616000.0, 244000.0], [617000.0, 244000.0], [617000.0, 243000.0]]]}}, {"id": "1555", "type": "Feature", "properties": {"easting": 617500.0, "northing": 243500.0, "gridsq": "X617Y243", "numresp": 146, "numpeople": 341.64, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[618000.0, 243000.0], [617000.0, 243000.0], [617000.0, 244000.0], [618000.0, 244000.0], [618000.0, 243000.0]]]}}, {"id": "1556", "type": "Feature", "properties": {"easting": 618500.0, "northing": 243500.0, "gridsq": "X618Y243", "numresp": 109, "numpeople": 255.06, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[619000.0, 243000.0], [618000.0, 243000.0], [618000.0, 244000.0], [619000.0, 244000.0], [619000.0, 243000.0]]]}}, {"id": "1557", "type": "Feature", "properties": {"easting": 505500.0, "northing": 244500.0, "gridsq": "X505Y244", "numresp": 119, "numpeople": 278.46, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 244000.0], [505000.0, 244000.0], [505000.0, 245000.0], [506000.0, 245000.0], [506000.0, 244000.0]]]}}, {"id": "1558", "type": "Feature", "properties": {"easting": 614500.0, "northing": 244500.0, "gridsq": "X614Y244", "numresp": 166, "numpeople": 388.44, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[615000.0, 244000.0], [614000.0, 244000.0], [614000.0, 245000.0], [615000.0, 245000.0], [615000.0, 244000.0]]]}}, {"id": "1559", "type": "Feature", "properties": {"easting": 615500.0, "northing": 244500.0, "gridsq": "X615Y244", "numresp": 110, "numpeople": 257.4, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[616000.0, 244000.0], [615000.0, 244000.0], [615000.0, 245000.0], [616000.0, 245000.0], [616000.0, 244000.0]]]}}, {"id": "1560", "type": "Feature", "properties": {"easting": 616500.0, "northing": 244500.0, "gridsq": "X616Y244", "numresp": 197, "numpeople": 460.98, "numkeys": 3, "numnonresp": 99, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[617000.0, 244000.0], [616000.0, 244000.0], [616000.0, 245000.0], [617000.0, 245000.0], [617000.0, 244000.0]]]}}, {"id": "1561", "type": "Feature", "properties": {"easting": 617500.0, "northing": 244500.0, "gridsq": "X617Y244", "numresp": 82, "numpeople": 191.88, "numkeys": 4, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[618000.0, 244000.0], [617000.0, 244000.0], [617000.0, 245000.0], [618000.0, 245000.0], [618000.0, 244000.0]]]}}, {"id": "1562", "type": "Feature", "properties": {"easting": 394500.0, "northing": 245500.0, "gridsq": "X394Y245", "numresp": 70, "numpeople": 163.8, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 245000.0], [394000.0, 245000.0], [394000.0, 246000.0], [395000.0, 246000.0], [395000.0, 245000.0]]]}}, {"id": "1563", "type": "Feature", "properties": {"easting": 567500.0, "northing": 245500.0, "gridsq": "X567Y245", "numresp": 80, "numpeople": 187.2, "numkeys": 4, "numnonresp": 70, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[568000.0, 245000.0], [567000.0, 245000.0], [567000.0, 246000.0], [568000.0, 246000.0], [568000.0, 245000.0]]]}}, {"id": "1564", "type": "Feature", "properties": {"easting": 614500.0, "northing": 245500.0, "gridsq": "X614Y245", "numresp": 303, "numpeople": 709.02, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[615000.0, 245000.0], [614000.0, 245000.0], [614000.0, 246000.0], [615000.0, 246000.0], [615000.0, 245000.0]]]}}, {"id": "1565", "type": "Feature", "properties": {"easting": 413500.0, "northing": 246500.0, "gridsq": "X413Y246", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[414000.0, 246000.0], [413000.0, 246000.0], [413000.0, 247000.0], [414000.0, 247000.0], [414000.0, 246000.0]]]}}, {"id": "1566", "type": "Feature", "properties": {"easting": 446500.0, "northing": 246500.0, "gridsq": "X446Y246", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[447000.0, 246000.0], [446000.0, 246000.0], [446000.0, 247000.0], [447000.0, 247000.0], [447000.0, 246000.0]]]}}, {"id": "1567", "type": "Feature", "properties": {"easting": 614500.0, "northing": 246500.0, "gridsq": "X614Y246", "numresp": 92, "numpeople": 215.28, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[615000.0, 246000.0], [614000.0, 246000.0], [614000.0, 247000.0], [615000.0, 247000.0], [615000.0, 246000.0]]]}}, {"id": "1568", "type": "Feature", "properties": {"easting": 469500.0, "northing": 248500.0, "gridsq": "X469Y248", "numresp": 82, "numpeople": 191.88, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[470000.0, 248000.0], [469000.0, 248000.0], [469000.0, 249000.0], [470000.0, 249000.0], [470000.0, 248000.0]]]}}, {"id": "1569", "type": "Feature", "properties": {"easting": 626500.0, "northing": 248500.0, "gridsq": "X626Y248", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[627000.0, 248000.0], [626000.0, 248000.0], [626000.0, 249000.0], [627000.0, 249000.0], [627000.0, 248000.0]]]}}, {"id": "1570", "type": "Feature", "properties": {"easting": 627500.0, "northing": 248500.0, "gridsq": "X627Y248", "numresp": 66, "numpeople": 154.44, "numkeys": 3, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[628000.0, 248000.0], [627000.0, 248000.0], [627000.0, 249000.0], [628000.0, 249000.0], [628000.0, 248000.0]]]}}, {"id": "1571", "type": "Feature", "properties": {"easting": 504500.0, "northing": 249500.0, "gridsq": "X504Y249", "numresp": 100, "numpeople": 234.0, "numkeys": 2, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 249000.0], [504000.0, 249000.0], [504000.0, 250000.0], [505000.0, 250000.0], [505000.0, 249000.0]]]}}, {"id": "1572", "type": "Feature", "properties": {"easting": 500500.0, "northing": 250500.0, "gridsq": "X500Y250", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[501000.0, 250000.0], [500000.0, 250000.0], [500000.0, 251000.0], [501000.0, 251000.0], [501000.0, 250000.0]]]}}, {"id": "1573", "type": "Feature", "properties": {"easting": 504500.0, "northing": 250500.0, "gridsq": "X504Y250", "numresp": 196, "numpeople": 458.64, "numkeys": 2, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 250000.0], [504000.0, 250000.0], [504000.0, 251000.0], [505000.0, 251000.0], [505000.0, 250000.0]]]}}, {"id": "1574", "type": "Feature", "properties": {"easting": 506500.0, "northing": 250500.0, "gridsq": "X506Y250", "numresp": 58, "numpeople": 135.72, "numkeys": 4, "numnonresp": 168, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 250000.0], [506000.0, 250000.0], [506000.0, 251000.0], [507000.0, 251000.0], [507000.0, 250000.0]]]}}, {"id": "1575", "type": "Feature", "properties": {"easting": 507500.0, "northing": 250500.0, "gridsq": "X507Y250", "numresp": 165, "numpeople": 386.1, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 250000.0], [507000.0, 250000.0], [507000.0, 251000.0], [508000.0, 251000.0], [508000.0, 250000.0]]]}}, {"id": "1576", "type": "Feature", "properties": {"easting": 505500.0, "northing": 251500.0, "gridsq": "X505Y251", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 251000.0], [505000.0, 251000.0], [505000.0, 252000.0], [506000.0, 252000.0], [506000.0, 251000.0]]]}}, {"id": "1577", "type": "Feature", "properties": {"easting": 512500.0, "northing": 252500.0, "gridsq": "X512Y252", "numresp": 177, "numpeople": 414.18, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[513000.0, 252000.0], [512000.0, 252000.0], [512000.0, 253000.0], [513000.0, 253000.0], [513000.0, 252000.0]]]}}, {"id": "1578", "type": "Feature", "properties": {"easting": 385500.0, "northing": 253500.0, "gridsq": "X385Y253", "numresp": 46, "numpeople": 107.64, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 253000.0], [385000.0, 253000.0], [385000.0, 254000.0], [386000.0, 254000.0], [386000.0, 253000.0]]]}}, {"id": "1579", "type": "Feature", "properties": {"easting": 505500.0, "northing": 253500.0, "gridsq": "X505Y253", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 253000.0], [505000.0, 253000.0], [505000.0, 254000.0], [506000.0, 254000.0], [506000.0, 253000.0]]]}}, {"id": "1580", "type": "Feature", "properties": {"easting": 365500.0, "northing": 254500.0, "gridsq": "X365Y254", "numresp": 97, "numpeople": 226.98, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[366000.0, 254000.0], [365000.0, 254000.0], [365000.0, 255000.0], [366000.0, 255000.0], [366000.0, 254000.0]]]}}, {"id": "1581", "type": "Feature", "properties": {"easting": 472500.0, "northing": 254500.0, "gridsq": "X472Y254", "numresp": 4, "numpeople": 9.36, "numkeys": 1, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[473000.0, 254000.0], [472000.0, 254000.0], [472000.0, 255000.0], [473000.0, 255000.0], [473000.0, 254000.0]]]}}, {"id": "1582", "type": "Feature", "properties": {"easting": 475500.0, "northing": 254500.0, "gridsq": "X475Y254", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[476000.0, 254000.0], [475000.0, 254000.0], [475000.0, 255000.0], [476000.0, 255000.0], [476000.0, 254000.0]]]}}, {"id": "1583", "type": "Feature", "properties": {"easting": 608500.0, "northing": 254500.0, "gridsq": "X608Y254", "numresp": 77, "numpeople": 180.18, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[609000.0, 254000.0], [608000.0, 254000.0], [608000.0, 255000.0], [609000.0, 255000.0], [609000.0, 254000.0]]]}}, {"id": "1584", "type": "Feature", "properties": {"easting": 609500.0, "northing": 254500.0, "gridsq": "X609Y254", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 70, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[610000.0, 254000.0], [609000.0, 254000.0], [609000.0, 255000.0], [610000.0, 255000.0], [610000.0, 254000.0]]]}}, {"id": "1585", "type": "Feature", "properties": {"easting": 419500.0, "northing": 255500.0, "gridsq": "X419Y255", "numresp": 162, "numpeople": 379.08, "numkeys": 0, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[420000.0, 255000.0], [419000.0, 255000.0], [419000.0, 256000.0], [420000.0, 256000.0], [420000.0, 255000.0]]]}}, {"id": "1586", "type": "Feature", "properties": {"easting": 546500.0, "northing": 255500.0, "gridsq": "X546Y255", "numresp": 49, "numpeople": 114.66, "numkeys": 27, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 255000.0], [546000.0, 255000.0], [546000.0, 256000.0], [547000.0, 256000.0], [547000.0, 255000.0]]]}}, {"id": "1587", "type": "Feature", "properties": {"easting": 547500.0, "northing": 255500.0, "gridsq": "X547Y255", "numresp": 147, "numpeople": 343.98, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 255000.0], [547000.0, 255000.0], [547000.0, 256000.0], [548000.0, 256000.0], [548000.0, 255000.0]]]}}, {"id": "1588", "type": "Feature", "properties": {"easting": 551500.0, "northing": 255500.0, "gridsq": "X551Y255", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[552000.0, 255000.0], [551000.0, 255000.0], [551000.0, 256000.0], [552000.0, 256000.0], [552000.0, 255000.0]]]}}, {"id": "1589", "type": "Feature", "properties": {"easting": 385500.0, "northing": 256500.0, "gridsq": "X385Y256", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 256000.0], [385000.0, 256000.0], [385000.0, 257000.0], [386000.0, 257000.0], [386000.0, 256000.0]]]}}, {"id": "1590", "type": "Feature", "properties": {"easting": 532500.0, "northing": 256500.0, "gridsq": "X532Y256", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 256000.0], [532000.0, 256000.0], [532000.0, 257000.0], [533000.0, 257000.0], [533000.0, 256000.0]]]}}, {"id": "1591", "type": "Feature", "properties": {"easting": 545500.0, "northing": 256500.0, "gridsq": "X545Y256", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 256000.0], [545000.0, 256000.0], [545000.0, 257000.0], [546000.0, 257000.0], [546000.0, 256000.0]]]}}, {"id": "1592", "type": "Feature", "properties": {"easting": 546500.0, "northing": 256500.0, "gridsq": "X546Y256", "numresp": 185, "numpeople": 432.9, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 256000.0], [546000.0, 256000.0], [546000.0, 257000.0], [547000.0, 257000.0], [547000.0, 256000.0]]]}}, {"id": "1593", "type": "Feature", "properties": {"easting": 547500.0, "northing": 256500.0, "gridsq": "X547Y256", "numresp": 552, "numpeople": 1291.68, "numkeys": 4, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 256000.0], [547000.0, 256000.0], [547000.0, 257000.0], [548000.0, 257000.0], [548000.0, 256000.0]]]}}, {"id": "1594", "type": "Feature", "properties": {"easting": 386500.0, "northing": 257500.0, "gridsq": "X386Y257", "numresp": 15, "numpeople": 35.1, "numkeys": 0, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 257000.0], [386000.0, 257000.0], [386000.0, 258000.0], [387000.0, 258000.0], [387000.0, 257000.0]]]}}, {"id": "1595", "type": "Feature", "properties": {"easting": 543500.0, "northing": 257500.0, "gridsq": "X543Y257", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[544000.0, 257000.0], [543000.0, 257000.0], [543000.0, 258000.0], [544000.0, 258000.0], [544000.0, 257000.0]]]}}, {"id": "1596", "type": "Feature", "properties": {"easting": 545500.0, "northing": 257500.0, "gridsq": "X545Y257", "numresp": 68, "numpeople": 159.12, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 257000.0], [545000.0, 257000.0], [545000.0, 258000.0], [546000.0, 258000.0], [546000.0, 257000.0]]]}}, {"id": "1597", "type": "Feature", "properties": {"easting": 546500.0, "northing": 257500.0, "gridsq": "X546Y257", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 257000.0], [546000.0, 257000.0], [546000.0, 258000.0], [547000.0, 258000.0], [547000.0, 257000.0]]]}}, {"id": "1598", "type": "Feature", "properties": {"easting": 547500.0, "northing": 257500.0, "gridsq": "X547Y257", "numresp": 264, "numpeople": 617.76, "numkeys": 4, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[548000.0, 257000.0], [547000.0, 257000.0], [547000.0, 258000.0], [548000.0, 258000.0], [548000.0, 257000.0]]]}}, {"id": "1599", "type": "Feature", "properties": {"easting": 605500.0, "northing": 257500.0, "gridsq": "X605Y257", "numresp": 43, "numpeople": 100.62, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[606000.0, 257000.0], [605000.0, 257000.0], [605000.0, 258000.0], [606000.0, 258000.0], [606000.0, 257000.0]]]}}, {"id": "1600", "type": "Feature", "properties": {"easting": 350500.0, "northing": 258500.0, "gridsq": "X350Y258", "numresp": 2, "numpeople": 4.68, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[351000.0, 258000.0], [350000.0, 258000.0], [350000.0, 259000.0], [351000.0, 259000.0], [351000.0, 258000.0]]]}}, {"id": "1601", "type": "Feature", "properties": {"easting": 409500.0, "northing": 258500.0, "gridsq": "X409Y258", "numresp": 21, "numpeople": 49.14, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[410000.0, 258000.0], [409000.0, 258000.0], [409000.0, 259000.0], [410000.0, 259000.0], [410000.0, 258000.0]]]}}, {"id": "1602", "type": "Feature", "properties": {"easting": 518500.0, "northing": 258500.0, "gridsq": "X518Y258", "numresp": 211, "numpeople": 493.74, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 258000.0], [518000.0, 258000.0], [518000.0, 259000.0], [519000.0, 259000.0], [519000.0, 258000.0]]]}}, {"id": "1603", "type": "Feature", "properties": {"easting": 530500.0, "northing": 258500.0, "gridsq": "X530Y258", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 258000.0], [530000.0, 258000.0], [530000.0, 259000.0], [531000.0, 259000.0], [531000.0, 258000.0]]]}}, {"id": "1604", "type": "Feature", "properties": {"easting": 545500.0, "northing": 258500.0, "gridsq": "X545Y258", "numresp": 30, "numpeople": 70.2, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[546000.0, 258000.0], [545000.0, 258000.0], [545000.0, 259000.0], [546000.0, 259000.0], [546000.0, 258000.0]]]}}, {"id": "1605", "type": "Feature", "properties": {"easting": 546500.0, "northing": 258500.0, "gridsq": "X546Y258", "numresp": 271, "numpeople": 634.14, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 258000.0], [546000.0, 258000.0], [546000.0, 259000.0], [547000.0, 259000.0], [547000.0, 258000.0]]]}}, {"id": "1606", "type": "Feature", "properties": {"easting": 604500.0, "northing": 258500.0, "gridsq": "X604Y258", "numresp": 35, "numpeople": 81.9, "numkeys": 1, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[605000.0, 258000.0], [604000.0, 258000.0], [604000.0, 259000.0], [605000.0, 259000.0], [605000.0, 258000.0]]]}}, {"id": "1607", "type": "Feature", "properties": {"easting": 475500.0, "northing": 259500.0, "gridsq": "X475Y259", "numresp": 144, "numpeople": 336.96, "numkeys": 1, "numnonresp": 52, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[476000.0, 259000.0], [475000.0, 259000.0], [475000.0, 260000.0], [476000.0, 260000.0], [476000.0, 259000.0]]]}}, {"id": "1608", "type": "Feature", "properties": {"easting": 546500.0, "northing": 259500.0, "gridsq": "X546Y259", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[547000.0, 259000.0], [546000.0, 259000.0], [546000.0, 260000.0], [547000.0, 260000.0], [547000.0, 259000.0]]]}}, {"id": "1609", "type": "Feature", "properties": {"easting": 474500.0, "northing": 260500.0, "gridsq": "X474Y260", "numresp": 387, "numpeople": 905.58, "numkeys": 2, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[475000.0, 260000.0], [474000.0, 260000.0], [474000.0, 261000.0], [475000.0, 261000.0], [475000.0, 260000.0]]]}}, {"id": "1610", "type": "Feature", "properties": {"easting": 475500.0, "northing": 260500.0, "gridsq": "X475Y260", "numresp": 35, "numpeople": 81.9, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[476000.0, 260000.0], [475000.0, 260000.0], [475000.0, 261000.0], [476000.0, 261000.0], [476000.0, 260000.0]]]}}, {"id": "1611", "type": "Feature", "properties": {"easting": 476500.0, "northing": 260500.0, "gridsq": "X476Y260", "numresp": 57, "numpeople": 133.38, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[477000.0, 260000.0], [476000.0, 260000.0], [476000.0, 261000.0], [477000.0, 261000.0], [477000.0, 260000.0]]]}}, {"id": "1612", "type": "Feature", "properties": {"easting": 517500.0, "northing": 260500.0, "gridsq": "X517Y260", "numresp": 97, "numpeople": 226.98, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 260000.0], [517000.0, 260000.0], [517000.0, 261000.0], [518000.0, 261000.0], [518000.0, 260000.0]]]}}, {"id": "1613", "type": "Feature", "properties": {"easting": 519500.0, "northing": 260500.0, "gridsq": "X519Y260", "numresp": 25, "numpeople": 58.5, "numkeys": 4, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 260000.0], [519000.0, 260000.0], [519000.0, 261000.0], [520000.0, 261000.0], [520000.0, 260000.0]]]}}, {"id": "1614", "type": "Feature", "properties": {"easting": 542500.0, "northing": 260500.0, "gridsq": "X542Y260", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 260000.0], [542000.0, 260000.0], [542000.0, 261000.0], [543000.0, 261000.0], [543000.0, 260000.0]]]}}, {"id": "1615", "type": "Feature", "properties": {"easting": 544500.0, "northing": 260500.0, "gridsq": "X544Y260", "numresp": 263, "numpeople": 615.42, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 260000.0], [544000.0, 260000.0], [544000.0, 261000.0], [545000.0, 261000.0], [545000.0, 260000.0]]]}}, {"id": "1616", "type": "Feature", "properties": {"easting": 457500.0, "northing": 261500.0, "gridsq": "X457Y261", "numresp": 44, "numpeople": 102.96, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 261000.0], [457000.0, 261000.0], [457000.0, 262000.0], [458000.0, 262000.0], [458000.0, 261000.0]]]}}, {"id": "1617", "type": "Feature", "properties": {"easting": 474500.0, "northing": 261500.0, "gridsq": "X474Y261", "numresp": 92, "numpeople": 215.28, "numkeys": 2, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[475000.0, 261000.0], [474000.0, 261000.0], [474000.0, 262000.0], [475000.0, 262000.0], [475000.0, 261000.0]]]}}, {"id": "1618", "type": "Feature", "properties": {"easting": 478500.0, "northing": 261500.0, "gridsq": "X478Y261", "numresp": 30, "numpeople": 70.2, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[479000.0, 261000.0], [478000.0, 261000.0], [478000.0, 262000.0], [479000.0, 262000.0], [479000.0, 261000.0]]]}}, {"id": "1619", "type": "Feature", "properties": {"easting": 480500.0, "northing": 261500.0, "gridsq": "X480Y261", "numresp": 102, "numpeople": 238.68, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 261000.0], [480000.0, 261000.0], [480000.0, 262000.0], [481000.0, 262000.0], [481000.0, 261000.0]]]}}, {"id": "1620", "type": "Feature", "properties": {"easting": 544500.0, "northing": 261500.0, "gridsq": "X544Y261", "numresp": 239, "numpeople": 559.26, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 261000.0], [544000.0, 261000.0], [544000.0, 262000.0], [545000.0, 262000.0], [545000.0, 261000.0]]]}}, {"id": "1621", "type": "Feature", "properties": {"easting": 471500.0, "northing": 262500.0, "gridsq": "X471Y262", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[472000.0, 262000.0], [471000.0, 262000.0], [471000.0, 263000.0], [472000.0, 263000.0], [472000.0, 262000.0]]]}}, {"id": "1622", "type": "Feature", "properties": {"easting": 475500.0, "northing": 262500.0, "gridsq": "X475Y262", "numresp": 239, "numpeople": 559.26, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[476000.0, 262000.0], [475000.0, 262000.0], [475000.0, 263000.0], [476000.0, 263000.0], [476000.0, 262000.0]]]}}, {"id": "1623", "type": "Feature", "properties": {"easting": 476500.0, "northing": 262500.0, "gridsq": "X476Y262", "numresp": 89, "numpeople": 208.26, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[477000.0, 262000.0], [476000.0, 262000.0], [476000.0, 263000.0], [477000.0, 263000.0], [477000.0, 262000.0]]]}}, {"id": "1624", "type": "Feature", "properties": {"easting": 477500.0, "northing": 262500.0, "gridsq": "X477Y262", "numresp": 98, "numpeople": 229.32, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[478000.0, 262000.0], [477000.0, 262000.0], [477000.0, 263000.0], [478000.0, 263000.0], [478000.0, 262000.0]]]}}, {"id": "1625", "type": "Feature", "properties": {"easting": 480500.0, "northing": 262500.0, "gridsq": "X480Y262", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[481000.0, 262000.0], [480000.0, 262000.0], [480000.0, 263000.0], [481000.0, 263000.0], [481000.0, 262000.0]]]}}, {"id": "1626", "type": "Feature", "properties": {"easting": 628500.0, "northing": 262500.0, "gridsq": "X628Y262", "numresp": 9, "numpeople": 21.06, "numkeys": 0, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[629000.0, 262000.0], [628000.0, 262000.0], [628000.0, 263000.0], [629000.0, 263000.0], [629000.0, 262000.0]]]}}, {"id": "1627", "type": "Feature", "properties": {"easting": 390500.0, "northing": 263500.0, "gridsq": "X390Y263", "numresp": 35, "numpeople": 81.9, "numkeys": 3, "numnonresp": 61, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 263000.0], [390000.0, 263000.0], [390000.0, 264000.0], [391000.0, 264000.0], [391000.0, 263000.0]]]}}, {"id": "1628", "type": "Feature", "properties": {"easting": 479500.0, "northing": 263500.0, "gridsq": "X479Y263", "numresp": 134, "numpeople": 313.56, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[480000.0, 263000.0], [479000.0, 263000.0], [479000.0, 264000.0], [480000.0, 264000.0], [480000.0, 263000.0]]]}}, {"id": "1629", "type": "Feature", "properties": {"easting": 528500.0, "northing": 263500.0, "gridsq": "X528Y263", "numresp": 36, "numpeople": 84.24, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 263000.0], [528000.0, 263000.0], [528000.0, 264000.0], [529000.0, 264000.0], [529000.0, 263000.0]]]}}, {"id": "1630", "type": "Feature", "properties": {"easting": 544500.0, "northing": 263500.0, "gridsq": "X544Y263", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[545000.0, 263000.0], [544000.0, 263000.0], [544000.0, 264000.0], [545000.0, 264000.0], [545000.0, 263000.0]]]}}, {"id": "1631", "type": "Feature", "properties": {"easting": 564500.0, "northing": 263500.0, "gridsq": "X564Y263", "numresp": 158, "numpeople": 369.72, "numkeys": 4, "numnonresp": 85, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 263000.0], [564000.0, 263000.0], [564000.0, 264000.0], [565000.0, 264000.0], [565000.0, 263000.0]]]}}, {"id": "1632", "type": "Feature", "properties": {"easting": 565500.0, "northing": 263500.0, "gridsq": "X565Y263", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[566000.0, 263000.0], [565000.0, 263000.0], [565000.0, 264000.0], [566000.0, 264000.0], [566000.0, 263000.0]]]}}, {"id": "1633", "type": "Feature", "properties": {"easting": 432500.0, "northing": 264500.0, "gridsq": "X432Y264", "numresp": 120, "numpeople": 280.8, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 264000.0], [432000.0, 264000.0], [432000.0, 265000.0], [433000.0, 265000.0], [433000.0, 264000.0]]]}}, {"id": "1634", "type": "Feature", "properties": {"easting": 476500.0, "northing": 264500.0, "gridsq": "X476Y264", "numresp": 17, "numpeople": 39.78, "numkeys": 197, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[477000.0, 264000.0], [476000.0, 264000.0], [476000.0, 265000.0], [477000.0, 265000.0], [477000.0, 264000.0]]]}}, {"id": "1635", "type": "Feature", "properties": {"easting": 477500.0, "northing": 264500.0, "gridsq": "X477Y264", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[478000.0, 264000.0], [477000.0, 264000.0], [477000.0, 265000.0], [478000.0, 265000.0], [478000.0, 264000.0]]]}}, {"id": "1636", "type": "Feature", "properties": {"easting": 407500.0, "northing": 265500.0, "gridsq": "X407Y265", "numresp": 20, "numpeople": 46.8, "numkeys": 0, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 265000.0], [407000.0, 265000.0], [407000.0, 266000.0], [408000.0, 266000.0], [408000.0, 265000.0]]]}}, {"id": "1637", "type": "Feature", "properties": {"easting": 426500.0, "northing": 265500.0, "gridsq": "X426Y265", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[427000.0, 265000.0], [426000.0, 265000.0], [426000.0, 266000.0], [427000.0, 266000.0], [427000.0, 265000.0]]]}}, {"id": "1638", "type": "Feature", "properties": {"easting": 427500.0, "northing": 265500.0, "gridsq": "X427Y265", "numresp": 182, "numpeople": 425.88, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 265000.0], [427000.0, 265000.0], [427000.0, 266000.0], [428000.0, 266000.0], [428000.0, 265000.0]]]}}, {"id": "1639", "type": "Feature", "properties": {"easting": 431500.0, "northing": 265500.0, "gridsq": "X431Y265", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 265000.0], [431000.0, 265000.0], [431000.0, 266000.0], [432000.0, 266000.0], [432000.0, 265000.0]]]}}, {"id": "1640", "type": "Feature", "properties": {"easting": 496500.0, "northing": 265500.0, "gridsq": "X496Y265", "numresp": 54, "numpeople": 126.36, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 265000.0], [496000.0, 265000.0], [496000.0, 266000.0], [497000.0, 266000.0], [497000.0, 265000.0]]]}}, {"id": "1641", "type": "Feature", "properties": {"easting": 584500.0, "northing": 265500.0, "gridsq": "X584Y265", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[585000.0, 265000.0], [584000.0, 265000.0], [584000.0, 266000.0], [585000.0, 266000.0], [585000.0, 265000.0]]]}}, {"id": "1642", "type": "Feature", "properties": {"easting": 394500.0, "northing": 266500.0, "gridsq": "X394Y266", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 266000.0], [394000.0, 266000.0], [394000.0, 267000.0], [395000.0, 267000.0], [395000.0, 266000.0]]]}}, {"id": "1643", "type": "Feature", "properties": {"easting": 407500.0, "northing": 266500.0, "gridsq": "X407Y266", "numresp": 97, "numpeople": 226.98, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 266000.0], [407000.0, 266000.0], [407000.0, 267000.0], [408000.0, 267000.0], [408000.0, 266000.0]]]}}, {"id": "1644", "type": "Feature", "properties": {"easting": 415500.0, "northing": 266500.0, "gridsq": "X415Y266", "numresp": 55, "numpeople": 128.7, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 266000.0], [415000.0, 266000.0], [415000.0, 267000.0], [416000.0, 267000.0], [416000.0, 266000.0]]]}}, {"id": "1645", "type": "Feature", "properties": {"easting": 428500.0, "northing": 266500.0, "gridsq": "X428Y266", "numresp": 385, "numpeople": 900.9, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 266000.0], [428000.0, 266000.0], [428000.0, 267000.0], [429000.0, 267000.0], [429000.0, 266000.0]]]}}, {"id": "1646", "type": "Feature", "properties": {"easting": 445500.0, "northing": 266500.0, "gridsq": "X445Y266", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[446000.0, 266000.0], [445000.0, 266000.0], [445000.0, 267000.0], [446000.0, 267000.0], [446000.0, 266000.0]]]}}, {"id": "1647", "type": "Feature", "properties": {"easting": 489500.0, "northing": 266500.0, "gridsq": "X489Y266", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 266000.0], [489000.0, 266000.0], [489000.0, 267000.0], [490000.0, 267000.0], [490000.0, 266000.0]]]}}, {"id": "1648", "type": "Feature", "properties": {"easting": 495500.0, "northing": 266500.0, "gridsq": "X495Y266", "numresp": 186, "numpeople": 435.24, "numkeys": 2, "numnonresp": 49, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[496000.0, 266000.0], [495000.0, 266000.0], [495000.0, 267000.0], [496000.0, 267000.0], [496000.0, 266000.0]]]}}, {"id": "1649", "type": "Feature", "properties": {"easting": 496500.0, "northing": 266500.0, "gridsq": "X496Y266", "numresp": 98, "numpeople": 229.32, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 266000.0], [496000.0, 266000.0], [496000.0, 267000.0], [497000.0, 267000.0], [497000.0, 266000.0]]]}}, {"id": "1650", "type": "Feature", "properties": {"easting": 394500.0, "northing": 267500.0, "gridsq": "X394Y267", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 267000.0], [394000.0, 267000.0], [394000.0, 268000.0], [395000.0, 268000.0], [395000.0, 267000.0]]]}}, {"id": "1651", "type": "Feature", "properties": {"easting": 395500.0, "northing": 267500.0, "gridsq": "X395Y267", "numresp": 18, "numpeople": 42.12, "numkeys": 1, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 267000.0], [395000.0, 267000.0], [395000.0, 268000.0], [396000.0, 268000.0], [396000.0, 267000.0]]]}}, {"id": "1652", "type": "Feature", "properties": {"easting": 403500.0, "northing": 267500.0, "gridsq": "X403Y267", "numresp": 24, "numpeople": 56.16, "numkeys": 0, "numnonresp": 75, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[404000.0, 267000.0], [403000.0, 267000.0], [403000.0, 268000.0], [404000.0, 268000.0], [404000.0, 267000.0]]]}}, {"id": "1653", "type": "Feature", "properties": {"easting": 404500.0, "northing": 267500.0, "gridsq": "X404Y267", "numresp": 9, "numpeople": 21.06, "numkeys": 0, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 267000.0], [404000.0, 267000.0], [404000.0, 268000.0], [405000.0, 268000.0], [405000.0, 267000.0]]]}}, {"id": "1654", "type": "Feature", "properties": {"easting": 405500.0, "northing": 267500.0, "gridsq": "X405Y267", "numresp": 4, "numpeople": 9.36, "numkeys": 0, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[406000.0, 267000.0], [405000.0, 267000.0], [405000.0, 268000.0], [406000.0, 268000.0], [406000.0, 267000.0]]]}}, {"id": "1655", "type": "Feature", "properties": {"easting": 406500.0, "northing": 267500.0, "gridsq": "X406Y267", "numresp": 7, "numpeople": 16.38, "numkeys": 1, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 267000.0], [406000.0, 267000.0], [406000.0, 268000.0], [407000.0, 268000.0], [407000.0, 267000.0]]]}}, {"id": "1656", "type": "Feature", "properties": {"easting": 407500.0, "northing": 267500.0, "gridsq": "X407Y267", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 267000.0], [407000.0, 267000.0], [407000.0, 268000.0], [408000.0, 268000.0], [408000.0, 267000.0]]]}}, {"id": "1657", "type": "Feature", "properties": {"easting": 488500.0, "northing": 267500.0, "gridsq": "X488Y267", "numresp": 105, "numpeople": 245.7, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 267000.0], [488000.0, 267000.0], [488000.0, 268000.0], [489000.0, 268000.0], [489000.0, 267000.0]]]}}, {"id": "1658", "type": "Feature", "properties": {"easting": 489500.0, "northing": 267500.0, "gridsq": "X489Y267", "numresp": 42, "numpeople": 98.28, "numkeys": 3, "numnonresp": 99, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 267000.0], [489000.0, 267000.0], [489000.0, 268000.0], [490000.0, 268000.0], [490000.0, 267000.0]]]}}, {"id": "1659", "type": "Feature", "properties": {"easting": 494500.0, "northing": 267500.0, "gridsq": "X494Y267", "numresp": 33, "numpeople": 77.22, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[495000.0, 267000.0], [494000.0, 267000.0], [494000.0, 268000.0], [495000.0, 268000.0], [495000.0, 267000.0]]]}}, {"id": "1660", "type": "Feature", "properties": {"easting": 519500.0, "northing": 267500.0, "gridsq": "X519Y267", "numresp": 124, "numpeople": 290.16, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 267000.0], [519000.0, 267000.0], [519000.0, 268000.0], [520000.0, 268000.0], [520000.0, 267000.0]]]}}, {"id": "1661", "type": "Feature", "properties": {"easting": 403500.0, "northing": 268500.0, "gridsq": "X403Y268", "numresp": 11, "numpeople": 25.74, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[404000.0, 268000.0], [403000.0, 268000.0], [403000.0, 269000.0], [404000.0, 269000.0], [404000.0, 268000.0]]]}}, {"id": "1662", "type": "Feature", "properties": {"easting": 406500.0, "northing": 268500.0, "gridsq": "X406Y268", "numresp": 142, "numpeople": 332.28, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 268000.0], [406000.0, 268000.0], [406000.0, 269000.0], [407000.0, 269000.0], [407000.0, 268000.0]]]}}, {"id": "1663", "type": "Feature", "properties": {"easting": 495500.0, "northing": 268500.0, "gridsq": "X495Y268", "numresp": 51, "numpeople": 119.34, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[496000.0, 268000.0], [495000.0, 268000.0], [495000.0, 269000.0], [496000.0, 269000.0], [496000.0, 268000.0]]]}}, {"id": "1664", "type": "Feature", "properties": {"easting": 510500.0, "northing": 269500.0, "gridsq": "X510Y269", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 269000.0], [510000.0, 269000.0], [510000.0, 270000.0], [511000.0, 270000.0], [511000.0, 269000.0]]]}}, {"id": "1665", "type": "Feature", "properties": {"easting": 395500.0, "northing": 270500.0, "gridsq": "X395Y270", "numresp": 89, "numpeople": 208.26, "numkeys": 1, "numnonresp": 81, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 270000.0], [395000.0, 270000.0], [395000.0, 271000.0], [396000.0, 271000.0], [396000.0, 270000.0]]]}}, {"id": "1666", "type": "Feature", "properties": {"easting": 396500.0, "northing": 270500.0, "gridsq": "X396Y270", "numresp": 50, "numpeople": 117.0, "numkeys": 1, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 270000.0], [396000.0, 270000.0], [396000.0, 271000.0], [397000.0, 271000.0], [397000.0, 270000.0]]]}}, {"id": "1667", "type": "Feature", "properties": {"easting": 429500.0, "northing": 271500.0, "gridsq": "X429Y271", "numresp": 48, "numpeople": 112.32, "numkeys": 2, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 271000.0], [429000.0, 271000.0], [429000.0, 272000.0], [430000.0, 272000.0], [430000.0, 271000.0]]]}}, {"id": "1668", "type": "Feature", "properties": {"easting": 491500.0, "northing": 271500.0, "gridsq": "X491Y271", "numresp": 26, "numpeople": 60.84, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[492000.0, 271000.0], [491000.0, 271000.0], [491000.0, 272000.0], [492000.0, 272000.0], [492000.0, 271000.0]]]}}, {"id": "1669", "type": "Feature", "properties": {"easting": 498500.0, "northing": 271500.0, "gridsq": "X498Y271", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 271000.0], [498000.0, 271000.0], [498000.0, 272000.0], [499000.0, 272000.0], [499000.0, 271000.0]]]}}, {"id": "1670", "type": "Feature", "properties": {"easting": 523500.0, "northing": 271500.0, "gridsq": "X523Y271", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 271000.0], [523000.0, 271000.0], [523000.0, 272000.0], [524000.0, 272000.0], [524000.0, 271000.0]]]}}, {"id": "1671", "type": "Feature", "properties": {"easting": 524500.0, "northing": 271500.0, "gridsq": "X524Y271", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 271000.0], [524000.0, 271000.0], [524000.0, 272000.0], [525000.0, 272000.0], [525000.0, 271000.0]]]}}, {"id": "1672", "type": "Feature", "properties": {"easting": 429500.0, "northing": 272500.0, "gridsq": "X429Y272", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 272000.0], [429000.0, 272000.0], [429000.0, 273000.0], [430000.0, 273000.0], [430000.0, 272000.0]]]}}, {"id": "1673", "type": "Feature", "properties": {"easting": 456500.0, "northing": 272500.0, "gridsq": "X456Y272", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 272000.0], [456000.0, 272000.0], [456000.0, 273000.0], [457000.0, 273000.0], [457000.0, 272000.0]]]}}, {"id": "1674", "type": "Feature", "properties": {"easting": 499500.0, "northing": 272500.0, "gridsq": "X499Y272", "numresp": 66, "numpeople": 154.44, "numkeys": 0, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 272000.0], [499000.0, 272000.0], [499000.0, 273000.0], [500000.0, 273000.0], [500000.0, 272000.0]]]}}, {"id": "1675", "type": "Feature", "properties": {"easting": 524500.0, "northing": 272500.0, "gridsq": "X524Y272", "numresp": 107, "numpeople": 250.38, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 272000.0], [524000.0, 272000.0], [524000.0, 273000.0], [525000.0, 273000.0], [525000.0, 272000.0]]]}}, {"id": "1676", "type": "Feature", "properties": {"easting": 531500.0, "northing": 272500.0, "gridsq": "X531Y272", "numresp": 183, "numpeople": 428.22, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[532000.0, 272000.0], [531000.0, 272000.0], [531000.0, 273000.0], [532000.0, 273000.0], [532000.0, 272000.0]]]}}, {"id": "1677", "type": "Feature", "properties": {"easting": 532500.0, "northing": 272500.0, "gridsq": "X532Y272", "numresp": 9, "numpeople": 21.06, "numkeys": 1, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 272000.0], [532000.0, 272000.0], [532000.0, 273000.0], [533000.0, 273000.0], [533000.0, 272000.0]]]}}, {"id": "1678", "type": "Feature", "properties": {"easting": 382500.0, "northing": 273500.0, "gridsq": "X382Y273", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[383000.0, 273000.0], [382000.0, 273000.0], [382000.0, 274000.0], [383000.0, 274000.0], [383000.0, 273000.0]]]}}, {"id": "1679", "type": "Feature", "properties": {"easting": 427500.0, "northing": 273500.0, "gridsq": "X427Y273", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 273000.0], [427000.0, 273000.0], [427000.0, 274000.0], [428000.0, 274000.0], [428000.0, 273000.0]]]}}, {"id": "1680", "type": "Feature", "properties": {"easting": 499500.0, "northing": 273500.0, "gridsq": "X499Y273", "numresp": 38, "numpeople": 88.92, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 273000.0], [499000.0, 273000.0], [499000.0, 274000.0], [500000.0, 274000.0], [500000.0, 273000.0]]]}}, {"id": "1681", "type": "Feature", "properties": {"easting": 523500.0, "northing": 273500.0, "gridsq": "X523Y273", "numresp": 0, "numpeople": 0.0, "numkeys": 1, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[524000.0, 273000.0], [523000.0, 273000.0], [523000.0, 274000.0], [524000.0, 274000.0], [524000.0, 273000.0]]]}}, {"id": "1682", "type": "Feature", "properties": {"easting": 524500.0, "northing": 273500.0, "gridsq": "X524Y273", "numresp": 128, "numpeople": 299.52, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[525000.0, 273000.0], [524000.0, 273000.0], [524000.0, 274000.0], [525000.0, 274000.0], [525000.0, 273000.0]]]}}, {"id": "1683", "type": "Feature", "properties": {"easting": 596500.0, "northing": 273500.0, "gridsq": "X596Y273", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[597000.0, 273000.0], [596000.0, 273000.0], [596000.0, 274000.0], [597000.0, 274000.0], [597000.0, 273000.0]]]}}, {"id": "1684", "type": "Feature", "properties": {"easting": 536500.0, "northing": 274500.0, "gridsq": "X536Y274", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 274000.0], [536000.0, 274000.0], [536000.0, 275000.0], [537000.0, 275000.0], [537000.0, 274000.0]]]}}, {"id": "1685", "type": "Feature", "properties": {"easting": 623500.0, "northing": 274500.0, "gridsq": "X623Y274", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[624000.0, 274000.0], [623000.0, 274000.0], [623000.0, 275000.0], [624000.0, 275000.0], [624000.0, 274000.0]]]}}, {"id": "1686", "type": "Feature", "properties": {"easting": 378500.0, "northing": 275500.0, "gridsq": "X378Y275", "numresp": 65, "numpeople": 152.1, "numkeys": 0, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[379000.0, 275000.0], [378000.0, 275000.0], [378000.0, 276000.0], [379000.0, 276000.0], [379000.0, 275000.0]]]}}, {"id": "1687", "type": "Feature", "properties": {"easting": 416500.0, "northing": 275500.0, "gridsq": "X416Y275", "numresp": 37, "numpeople": 86.58, "numkeys": 1, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 275000.0], [416000.0, 275000.0], [416000.0, 276000.0], [417000.0, 276000.0], [417000.0, 275000.0]]]}}, {"id": "1688", "type": "Feature", "properties": {"easting": 448500.0, "northing": 275500.0, "gridsq": "X448Y275", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 275000.0], [448000.0, 275000.0], [448000.0, 276000.0], [449000.0, 276000.0], [449000.0, 275000.0]]]}}, {"id": "1689", "type": "Feature", "properties": {"easting": 450500.0, "northing": 275500.0, "gridsq": "X450Y275", "numresp": 15, "numpeople": 35.1, "numkeys": 0, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 275000.0], [450000.0, 275000.0], [450000.0, 276000.0], [451000.0, 276000.0], [451000.0, 275000.0]]]}}, {"id": "1690", "type": "Feature", "properties": {"easting": 383500.0, "northing": 276500.0, "gridsq": "X383Y276", "numresp": 5, "numpeople": 11.7, "numkeys": 3, "numnonresp": 54, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 276000.0], [383000.0, 276000.0], [383000.0, 277000.0], [384000.0, 277000.0], [384000.0, 276000.0]]]}}, {"id": "1691", "type": "Feature", "properties": {"easting": 384500.0, "northing": 276500.0, "gridsq": "X384Y276", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 276000.0], [384000.0, 276000.0], [384000.0, 277000.0], [385000.0, 277000.0], [385000.0, 276000.0]]]}}, {"id": "1692", "type": "Feature", "properties": {"easting": 428500.0, "northing": 276500.0, "gridsq": "X428Y276", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 276000.0], [428000.0, 276000.0], [428000.0, 277000.0], [429000.0, 277000.0], [429000.0, 276000.0]]]}}, {"id": "1693", "type": "Feature", "properties": {"easting": 429500.0, "northing": 276500.0, "gridsq": "X429Y276", "numresp": 0, "numpeople": 0.0, "numkeys": 4, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 276000.0], [429000.0, 276000.0], [429000.0, 277000.0], [430000.0, 277000.0], [430000.0, 276000.0]]]}}, {"id": "1694", "type": "Feature", "properties": {"easting": 430500.0, "northing": 276500.0, "gridsq": "X430Y276", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 276000.0], [430000.0, 276000.0], [430000.0, 277000.0], [431000.0, 277000.0], [431000.0, 276000.0]]]}}, {"id": "1695", "type": "Feature", "properties": {"easting": 432500.0, "northing": 276500.0, "gridsq": "X432Y276", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 276000.0], [432000.0, 276000.0], [432000.0, 277000.0], [433000.0, 277000.0], [433000.0, 276000.0]]]}}, {"id": "1696", "type": "Feature", "properties": {"easting": 434500.0, "northing": 276500.0, "gridsq": "X434Y276", "numresp": 161, "numpeople": 376.74, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 276000.0], [434000.0, 276000.0], [434000.0, 277000.0], [435000.0, 277000.0], [435000.0, 276000.0]]]}}, {"id": "1697", "type": "Feature", "properties": {"easting": 435500.0, "northing": 276500.0, "gridsq": "X435Y276", "numresp": 204, "numpeople": 477.36, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 276000.0], [435000.0, 276000.0], [435000.0, 277000.0], [436000.0, 277000.0], [436000.0, 276000.0]]]}}, {"id": "1698", "type": "Feature", "properties": {"easting": 450500.0, "northing": 276500.0, "gridsq": "X450Y276", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 276000.0], [450000.0, 276000.0], [450000.0, 277000.0], [451000.0, 277000.0], [451000.0, 276000.0]]]}}, {"id": "1699", "type": "Feature", "properties": {"easting": 487500.0, "northing": 276500.0, "gridsq": "X487Y276", "numresp": 21, "numpeople": 49.14, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 276000.0], [487000.0, 276000.0], [487000.0, 277000.0], [488000.0, 277000.0], [488000.0, 276000.0]]]}}, {"id": "1700", "type": "Feature", "properties": {"easting": 391500.0, "northing": 277500.0, "gridsq": "X391Y277", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 277000.0], [391000.0, 277000.0], [391000.0, 278000.0], [392000.0, 278000.0], [392000.0, 277000.0]]]}}, {"id": "1701", "type": "Feature", "properties": {"easting": 400500.0, "northing": 277500.0, "gridsq": "X400Y277", "numresp": 82, "numpeople": 191.88, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 277000.0], [400000.0, 277000.0], [400000.0, 278000.0], [401000.0, 278000.0], [401000.0, 277000.0]]]}}, {"id": "1702", "type": "Feature", "properties": {"easting": 428500.0, "northing": 277500.0, "gridsq": "X428Y277", "numresp": 11, "numpeople": 25.74, "numkeys": 0, "numnonresp": 77, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 277000.0], [428000.0, 277000.0], [428000.0, 278000.0], [429000.0, 278000.0], [429000.0, 277000.0]]]}}, {"id": "1703", "type": "Feature", "properties": {"easting": 536500.0, "northing": 277500.0, "gridsq": "X536Y277", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[537000.0, 277000.0], [536000.0, 277000.0], [536000.0, 278000.0], [537000.0, 278000.0], [537000.0, 277000.0]]]}}, {"id": "1704", "type": "Feature", "properties": {"easting": 638500.0, "northing": 277500.0, "gridsq": "X638Y277", "numresp": 58, "numpeople": 135.72, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[639000.0, 277000.0], [638000.0, 277000.0], [638000.0, 278000.0], [639000.0, 278000.0], [639000.0, 277000.0]]]}}, {"id": "1705", "type": "Feature", "properties": {"easting": 402500.0, "northing": 278500.0, "gridsq": "X402Y278", "numresp": 158, "numpeople": 369.72, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[403000.0, 278000.0], [402000.0, 278000.0], [402000.0, 279000.0], [403000.0, 279000.0], [403000.0, 278000.0]]]}}, {"id": "1706", "type": "Feature", "properties": {"easting": 432500.0, "northing": 278500.0, "gridsq": "X432Y278", "numresp": 163, "numpeople": 381.42, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 278000.0], [432000.0, 278000.0], [432000.0, 279000.0], [433000.0, 279000.0], [433000.0, 278000.0]]]}}, {"id": "1707", "type": "Feature", "properties": {"easting": 433500.0, "northing": 278500.0, "gridsq": "X433Y278", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 278000.0], [433000.0, 278000.0], [433000.0, 279000.0], [434000.0, 279000.0], [434000.0, 278000.0]]]}}, {"id": "1708", "type": "Feature", "properties": {"easting": 434500.0, "northing": 278500.0, "gridsq": "X434Y278", "numresp": 344, "numpeople": 804.96, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 278000.0], [434000.0, 278000.0], [434000.0, 279000.0], [435000.0, 279000.0], [435000.0, 278000.0]]]}}, {"id": "1709", "type": "Feature", "properties": {"easting": 486500.0, "northing": 278500.0, "gridsq": "X486Y278", "numresp": 15, "numpeople": 35.1, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 278000.0], [486000.0, 278000.0], [486000.0, 279000.0], [487000.0, 279000.0], [487000.0, 278000.0]]]}}, {"id": "1710", "type": "Feature", "properties": {"easting": 499500.0, "northing": 278500.0, "gridsq": "X499Y278", "numresp": 39, "numpeople": 91.26, "numkeys": 3, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[500000.0, 278000.0], [499000.0, 278000.0], [499000.0, 279000.0], [500000.0, 279000.0], [500000.0, 278000.0]]]}}, {"id": "1711", "type": "Feature", "properties": {"easting": 405500.0, "northing": 279500.0, "gridsq": "X405Y279", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[406000.0, 279000.0], [405000.0, 279000.0], [405000.0, 280000.0], [406000.0, 280000.0], [406000.0, 279000.0]]]}}, {"id": "1712", "type": "Feature", "properties": {"easting": 433500.0, "northing": 279500.0, "gridsq": "X433Y279", "numresp": 110, "numpeople": 257.4, "numkeys": 3, "numnonresp": 103, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 279000.0], [433000.0, 279000.0], [433000.0, 280000.0], [434000.0, 280000.0], [434000.0, 279000.0]]]}}, {"id": "1713", "type": "Feature", "properties": {"easting": 487500.0, "northing": 279500.0, "gridsq": "X487Y279", "numresp": 152, "numpeople": 355.68, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 279000.0], [487000.0, 279000.0], [487000.0, 280000.0], [488000.0, 280000.0], [488000.0, 279000.0]]]}}, {"id": "1714", "type": "Feature", "properties": {"easting": 530500.0, "northing": 279500.0, "gridsq": "X530Y279", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 279000.0], [530000.0, 279000.0], [530000.0, 280000.0], [531000.0, 280000.0], [531000.0, 279000.0]]]}}, {"id": "1715", "type": "Feature", "properties": {"easting": 554500.0, "northing": 279500.0, "gridsq": "X554Y279", "numresp": 40, "numpeople": 93.6, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[555000.0, 279000.0], [554000.0, 279000.0], [554000.0, 280000.0], [555000.0, 280000.0], [555000.0, 279000.0]]]}}, {"id": "1716", "type": "Feature", "properties": {"easting": 403500.0, "northing": 280500.0, "gridsq": "X403Y280", "numresp": 87, "numpeople": 203.58, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[404000.0, 280000.0], [403000.0, 280000.0], [403000.0, 281000.0], [404000.0, 281000.0], [404000.0, 280000.0]]]}}, {"id": "1717", "type": "Feature", "properties": {"easting": 430500.0, "northing": 280500.0, "gridsq": "X430Y280", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 280000.0], [430000.0, 280000.0], [430000.0, 281000.0], [431000.0, 281000.0], [431000.0, 280000.0]]]}}, {"id": "1718", "type": "Feature", "properties": {"easting": 432500.0, "northing": 280500.0, "gridsq": "X432Y280", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 280000.0], [432000.0, 280000.0], [432000.0, 281000.0], [433000.0, 281000.0], [433000.0, 280000.0]]]}}, {"id": "1719", "type": "Feature", "properties": {"easting": 433500.0, "northing": 280500.0, "gridsq": "X433Y280", "numresp": 94, "numpeople": 219.96, "numkeys": 1, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 280000.0], [433000.0, 280000.0], [433000.0, 281000.0], [434000.0, 281000.0], [434000.0, 280000.0]]]}}, {"id": "1720", "type": "Feature", "properties": {"easting": 487500.0, "northing": 280500.0, "gridsq": "X487Y280", "numresp": 105, "numpeople": 245.7, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 280000.0], [487000.0, 280000.0], [487000.0, 281000.0], [488000.0, 281000.0], [488000.0, 280000.0]]]}}, {"id": "1721", "type": "Feature", "properties": {"easting": 553500.0, "northing": 280500.0, "gridsq": "X553Y280", "numresp": 158, "numpeople": 369.72, "numkeys": 5, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 280000.0], [553000.0, 280000.0], [553000.0, 281000.0], [554000.0, 281000.0], [554000.0, 280000.0]]]}}, {"id": "1722", "type": "Feature", "properties": {"easting": 554500.0, "northing": 280500.0, "gridsq": "X554Y280", "numresp": 63, "numpeople": 147.42, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[555000.0, 280000.0], [554000.0, 280000.0], [554000.0, 281000.0], [555000.0, 281000.0], [555000.0, 280000.0]]]}}, {"id": "1723", "type": "Feature", "properties": {"easting": 553500.0, "northing": 281500.0, "gridsq": "X553Y281", "numresp": 120, "numpeople": 280.8, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[554000.0, 281000.0], [553000.0, 281000.0], [553000.0, 282000.0], [554000.0, 282000.0], [554000.0, 281000.0]]]}}, {"id": "1724", "type": "Feature", "properties": {"easting": 412500.0, "northing": 282500.0, "gridsq": "X412Y282", "numresp": 51, "numpeople": 119.34, "numkeys": 1, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[413000.0, 282000.0], [412000.0, 282000.0], [412000.0, 283000.0], [413000.0, 283000.0], [413000.0, 282000.0]]]}}, {"id": "1725", "type": "Feature", "properties": {"easting": 517500.0, "northing": 282500.0, "gridsq": "X517Y282", "numresp": 126, "numpeople": 294.84, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 282000.0], [517000.0, 282000.0], [517000.0, 283000.0], [518000.0, 283000.0], [518000.0, 282000.0]]]}}, {"id": "1726", "type": "Feature", "properties": {"easting": 649500.0, "northing": 282500.0, "gridsq": "X649Y282", "numresp": 37, "numpeople": 86.58, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[650000.0, 282000.0], [649000.0, 282000.0], [649000.0, 283000.0], [650000.0, 283000.0], [650000.0, 282000.0]]]}}, {"id": "1727", "type": "Feature", "properties": {"easting": 390500.0, "northing": 283500.0, "gridsq": "X390Y283", "numresp": 98, "numpeople": 229.32, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 283000.0], [390000.0, 283000.0], [390000.0, 284000.0], [391000.0, 284000.0], [391000.0, 283000.0]]]}}, {"id": "1728", "type": "Feature", "properties": {"easting": 396500.0, "northing": 283500.0, "gridsq": "X396Y283", "numresp": 47, "numpeople": 109.98, "numkeys": 0, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 283000.0], [396000.0, 283000.0], [396000.0, 284000.0], [397000.0, 284000.0], [397000.0, 283000.0]]]}}, {"id": "1729", "type": "Feature", "properties": {"easting": 402500.0, "northing": 283500.0, "gridsq": "X402Y283", "numresp": 124, "numpeople": 290.16, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[403000.0, 283000.0], [402000.0, 283000.0], [402000.0, 284000.0], [403000.0, 284000.0], [403000.0, 283000.0]]]}}, {"id": "1730", "type": "Feature", "properties": {"easting": 412500.0, "northing": 283500.0, "gridsq": "X412Y283", "numresp": 34, "numpeople": 79.56, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[413000.0, 283000.0], [412000.0, 283000.0], [412000.0, 284000.0], [413000.0, 284000.0], [413000.0, 283000.0]]]}}, {"id": "1731", "type": "Feature", "properties": {"easting": 433500.0, "northing": 283500.0, "gridsq": "X433Y283", "numresp": 99, "numpeople": 231.66, "numkeys": 3, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 283000.0], [433000.0, 283000.0], [433000.0, 284000.0], [434000.0, 284000.0], [434000.0, 283000.0]]]}}, {"id": "1732", "type": "Feature", "properties": {"easting": 434500.0, "northing": 283500.0, "gridsq": "X434Y283", "numresp": 125, "numpeople": 292.5, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 283000.0], [434000.0, 283000.0], [434000.0, 284000.0], [435000.0, 284000.0], [435000.0, 283000.0]]]}}, {"id": "1733", "type": "Feature", "properties": {"easting": 516500.0, "northing": 283500.0, "gridsq": "X516Y283", "numresp": 220, "numpeople": 514.8, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 283000.0], [516000.0, 283000.0], [516000.0, 284000.0], [517000.0, 284000.0], [517000.0, 283000.0]]]}}, {"id": "1734", "type": "Feature", "properties": {"easting": 587500.0, "northing": 283500.0, "gridsq": "X587Y283", "numresp": 67, "numpeople": 156.78, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[588000.0, 283000.0], [587000.0, 283000.0], [587000.0, 284000.0], [588000.0, 284000.0], [588000.0, 283000.0]]]}}, {"id": "1735", "type": "Feature", "properties": {"easting": 624500.0, "northing": 283500.0, "gridsq": "X624Y283", "numresp": 78, "numpeople": 182.52, "numkeys": 1, "numnonresp": 41, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[625000.0, 283000.0], [624000.0, 283000.0], [624000.0, 284000.0], [625000.0, 284000.0], [625000.0, 283000.0]]]}}, {"id": "1736", "type": "Feature", "properties": {"easting": 649500.0, "northing": 283500.0, "gridsq": "X649Y283", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[650000.0, 283000.0], [649000.0, 283000.0], [649000.0, 284000.0], [650000.0, 284000.0], [650000.0, 283000.0]]]}}, {"id": "1737", "type": "Feature", "properties": {"easting": 389500.0, "northing": 284500.0, "gridsq": "X389Y284", "numresp": 192, "numpeople": 449.28, "numkeys": 3, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 284000.0], [389000.0, 284000.0], [389000.0, 285000.0], [390000.0, 285000.0], [390000.0, 284000.0]]]}}, {"id": "1738", "type": "Feature", "properties": {"easting": 392500.0, "northing": 284500.0, "gridsq": "X392Y284", "numresp": 23, "numpeople": 53.82, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 284000.0], [392000.0, 284000.0], [392000.0, 285000.0], [393000.0, 285000.0], [393000.0, 284000.0]]]}}, {"id": "1739", "type": "Feature", "properties": {"easting": 395500.0, "northing": 284500.0, "gridsq": "X395Y284", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 284000.0], [395000.0, 284000.0], [395000.0, 285000.0], [396000.0, 285000.0], [396000.0, 284000.0]]]}}, {"id": "1740", "type": "Feature", "properties": {"easting": 401500.0, "northing": 284500.0, "gridsq": "X401Y284", "numresp": 119, "numpeople": 278.46, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[402000.0, 284000.0], [401000.0, 284000.0], [401000.0, 285000.0], [402000.0, 285000.0], [402000.0, 284000.0]]]}}, {"id": "1741", "type": "Feature", "properties": {"easting": 435500.0, "northing": 284500.0, "gridsq": "X435Y284", "numresp": 15, "numpeople": 35.1, "numkeys": 4, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 284000.0], [435000.0, 284000.0], [435000.0, 285000.0], [436000.0, 285000.0], [436000.0, 284000.0]]]}}, {"id": "1742", "type": "Feature", "properties": {"easting": 454500.0, "northing": 284500.0, "gridsq": "X454Y284", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 284000.0], [454000.0, 284000.0], [454000.0, 285000.0], [455000.0, 285000.0], [455000.0, 284000.0]]]}}, {"id": "1743", "type": "Feature", "properties": {"easting": 406500.0, "northing": 285500.0, "gridsq": "X406Y285", "numresp": 74, "numpeople": 173.16, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 285000.0], [406000.0, 285000.0], [406000.0, 286000.0], [407000.0, 286000.0], [407000.0, 285000.0]]]}}, {"id": "1744", "type": "Feature", "properties": {"easting": 411500.0, "northing": 285500.0, "gridsq": "X411Y285", "numresp": 72, "numpeople": 168.48, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 285000.0], [411000.0, 285000.0], [411000.0, 286000.0], [412000.0, 286000.0], [412000.0, 285000.0]]]}}, {"id": "1745", "type": "Feature", "properties": {"easting": 414500.0, "northing": 285500.0, "gridsq": "X414Y285", "numresp": 123, "numpeople": 287.82, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 285000.0], [414000.0, 285000.0], [414000.0, 286000.0], [415000.0, 286000.0], [415000.0, 285000.0]]]}}, {"id": "1746", "type": "Feature", "properties": {"easting": 435500.0, "northing": 285500.0, "gridsq": "X435Y285", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 285000.0], [435000.0, 285000.0], [435000.0, 286000.0], [436000.0, 286000.0], [436000.0, 285000.0]]]}}, {"id": "1747", "type": "Feature", "properties": {"easting": 473500.0, "northing": 285500.0, "gridsq": "X473Y285", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[474000.0, 285000.0], [473000.0, 285000.0], [473000.0, 286000.0], [474000.0, 286000.0], [474000.0, 285000.0]]]}}, {"id": "1748", "type": "Feature", "properties": {"easting": 394500.0, "northing": 286500.0, "gridsq": "X394Y286", "numresp": 32, "numpeople": 74.88, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 286000.0], [394000.0, 286000.0], [394000.0, 287000.0], [395000.0, 287000.0], [395000.0, 286000.0]]]}}, {"id": "1749", "type": "Feature", "properties": {"easting": 397500.0, "northing": 286500.0, "gridsq": "X397Y286", "numresp": 108, "numpeople": 252.72, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[398000.0, 286000.0], [397000.0, 286000.0], [397000.0, 287000.0], [398000.0, 287000.0], [398000.0, 286000.0]]]}}, {"id": "1750", "type": "Feature", "properties": {"easting": 398500.0, "northing": 286500.0, "gridsq": "X398Y286", "numresp": 50, "numpeople": 117.0, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[399000.0, 286000.0], [398000.0, 286000.0], [398000.0, 287000.0], [399000.0, 287000.0], [399000.0, 286000.0]]]}}, {"id": "1751", "type": "Feature", "properties": {"easting": 406500.0, "northing": 286500.0, "gridsq": "X406Y286", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 68, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 286000.0], [406000.0, 286000.0], [406000.0, 287000.0], [407000.0, 287000.0], [407000.0, 286000.0]]]}}, {"id": "1752", "type": "Feature", "properties": {"easting": 407500.0, "northing": 286500.0, "gridsq": "X407Y286", "numresp": 48, "numpeople": 112.32, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 286000.0], [407000.0, 286000.0], [407000.0, 287000.0], [408000.0, 287000.0], [408000.0, 286000.0]]]}}, {"id": "1753", "type": "Feature", "properties": {"easting": 408500.0, "northing": 286500.0, "gridsq": "X408Y286", "numresp": 8, "numpeople": 18.72, "numkeys": 1, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 286000.0], [408000.0, 286000.0], [408000.0, 287000.0], [409000.0, 287000.0], [409000.0, 286000.0]]]}}, {"id": "1754", "type": "Feature", "properties": {"easting": 415500.0, "northing": 286500.0, "gridsq": "X415Y286", "numresp": 21, "numpeople": 49.14, "numkeys": 0, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 286000.0], [415000.0, 286000.0], [415000.0, 287000.0], [416000.0, 287000.0], [416000.0, 286000.0]]]}}, {"id": "1755", "type": "Feature", "properties": {"easting": 434500.0, "northing": 286500.0, "gridsq": "X434Y286", "numresp": 139, "numpeople": 325.26, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 286000.0], [434000.0, 286000.0], [434000.0, 287000.0], [435000.0, 287000.0], [435000.0, 286000.0]]]}}, {"id": "1756", "type": "Feature", "properties": {"easting": 435500.0, "northing": 286500.0, "gridsq": "X435Y286", "numresp": 209, "numpeople": 489.06, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 286000.0], [435000.0, 286000.0], [435000.0, 287000.0], [436000.0, 287000.0], [436000.0, 286000.0]]]}}, {"id": "1757", "type": "Feature", "properties": {"easting": 472500.0, "northing": 286500.0, "gridsq": "X472Y286", "numresp": 136, "numpeople": 318.24, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[473000.0, 286000.0], [472000.0, 286000.0], [472000.0, 287000.0], [473000.0, 287000.0], [473000.0, 286000.0]]]}}, {"id": "1758", "type": "Feature", "properties": {"easting": 473500.0, "northing": 286500.0, "gridsq": "X473Y286", "numresp": 150, "numpeople": 351.0, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[474000.0, 286000.0], [473000.0, 286000.0], [473000.0, 287000.0], [474000.0, 287000.0], [474000.0, 286000.0]]]}}, {"id": "1759", "type": "Feature", "properties": {"easting": 486500.0, "northing": 286500.0, "gridsq": "X486Y286", "numresp": 175, "numpeople": 409.5, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 286000.0], [486000.0, 286000.0], [486000.0, 287000.0], [487000.0, 287000.0], [487000.0, 286000.0]]]}}, {"id": "1760", "type": "Feature", "properties": {"easting": 398500.0, "northing": 287500.0, "gridsq": "X398Y287", "numresp": 203, "numpeople": 475.02, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[399000.0, 287000.0], [398000.0, 287000.0], [398000.0, 288000.0], [399000.0, 288000.0], [399000.0, 287000.0]]]}}, {"id": "1761", "type": "Feature", "properties": {"easting": 401500.0, "northing": 287500.0, "gridsq": "X401Y287", "numresp": 111, "numpeople": 259.74, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[402000.0, 287000.0], [401000.0, 287000.0], [401000.0, 288000.0], [402000.0, 288000.0], [402000.0, 287000.0]]]}}, {"id": "1762", "type": "Feature", "properties": {"easting": 402500.0, "northing": 287500.0, "gridsq": "X402Y287", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[403000.0, 287000.0], [402000.0, 287000.0], [402000.0, 288000.0], [403000.0, 288000.0], [403000.0, 287000.0]]]}}, {"id": "1763", "type": "Feature", "properties": {"easting": 412500.0, "northing": 287500.0, "gridsq": "X412Y287", "numresp": 173, "numpeople": 404.82, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[413000.0, 287000.0], [412000.0, 287000.0], [412000.0, 288000.0], [413000.0, 288000.0], [413000.0, 287000.0]]]}}, {"id": "1764", "type": "Feature", "properties": {"easting": 413500.0, "northing": 287500.0, "gridsq": "X413Y287", "numresp": 59, "numpeople": 138.06, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[414000.0, 287000.0], [413000.0, 287000.0], [413000.0, 288000.0], [414000.0, 288000.0], [414000.0, 287000.0]]]}}, {"id": "1765", "type": "Feature", "properties": {"easting": 417500.0, "northing": 287500.0, "gridsq": "X417Y287", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[418000.0, 287000.0], [417000.0, 287000.0], [417000.0, 288000.0], [418000.0, 288000.0], [418000.0, 287000.0]]]}}, {"id": "1766", "type": "Feature", "properties": {"easting": 473500.0, "northing": 287500.0, "gridsq": "X473Y287", "numresp": 248, "numpeople": 580.32, "numkeys": 3, "numnonresp": 186, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[474000.0, 287000.0], [473000.0, 287000.0], [473000.0, 288000.0], [474000.0, 288000.0], [474000.0, 287000.0]]]}}, {"id": "1767", "type": "Feature", "properties": {"easting": 474500.0, "northing": 287500.0, "gridsq": "X474Y287", "numresp": 158, "numpeople": 369.72, "numkeys": 5, "numnonresp": 55, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[475000.0, 287000.0], [474000.0, 287000.0], [474000.0, 288000.0], [475000.0, 288000.0], [475000.0, 287000.0]]]}}, {"id": "1768", "type": "Feature", "properties": {"easting": 487500.0, "northing": 287500.0, "gridsq": "X487Y287", "numresp": 79, "numpeople": 184.86, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 287000.0], [487000.0, 287000.0], [487000.0, 288000.0], [488000.0, 288000.0], [488000.0, 287000.0]]]}}, {"id": "1769", "type": "Feature", "properties": {"easting": 397500.0, "northing": 288500.0, "gridsq": "X397Y288", "numresp": 202, "numpeople": 472.68, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[398000.0, 288000.0], [397000.0, 288000.0], [397000.0, 289000.0], [398000.0, 289000.0], [398000.0, 288000.0]]]}}, {"id": "1770", "type": "Feature", "properties": {"easting": 399500.0, "northing": 288500.0, "gridsq": "X399Y288", "numresp": 23, "numpeople": 53.82, "numkeys": 3, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[400000.0, 288000.0], [399000.0, 288000.0], [399000.0, 289000.0], [400000.0, 289000.0], [400000.0, 288000.0]]]}}, {"id": "1771", "type": "Feature", "properties": {"easting": 402500.0, "northing": 288500.0, "gridsq": "X402Y288", "numresp": 139, "numpeople": 325.26, "numkeys": 4, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[403000.0, 288000.0], [402000.0, 288000.0], [402000.0, 289000.0], [403000.0, 289000.0], [403000.0, 288000.0]]]}}, {"id": "1772", "type": "Feature", "properties": {"easting": 406500.0, "northing": 288500.0, "gridsq": "X406Y288", "numresp": 229, "numpeople": 535.86, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 288000.0], [406000.0, 288000.0], [406000.0, 289000.0], [407000.0, 289000.0], [407000.0, 288000.0]]]}}, {"id": "1773", "type": "Feature", "properties": {"easting": 407500.0, "northing": 288500.0, "gridsq": "X407Y288", "numresp": 116, "numpeople": 271.44, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 288000.0], [407000.0, 288000.0], [407000.0, 289000.0], [408000.0, 289000.0], [408000.0, 288000.0]]]}}, {"id": "1774", "type": "Feature", "properties": {"easting": 411500.0, "northing": 288500.0, "gridsq": "X411Y288", "numresp": 92, "numpeople": 215.28, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 288000.0], [411000.0, 288000.0], [411000.0, 289000.0], [412000.0, 289000.0], [412000.0, 288000.0]]]}}, {"id": "1775", "type": "Feature", "properties": {"easting": 416500.0, "northing": 288500.0, "gridsq": "X416Y288", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 288000.0], [416000.0, 288000.0], [416000.0, 289000.0], [417000.0, 289000.0], [417000.0, 288000.0]]]}}, {"id": "1776", "type": "Feature", "properties": {"easting": 488500.0, "northing": 288500.0, "gridsq": "X488Y288", "numresp": 60, "numpeople": 140.4, "numkeys": 2, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 288000.0], [488000.0, 288000.0], [488000.0, 289000.0], [489000.0, 289000.0], [489000.0, 288000.0]]]}}, {"id": "1777", "type": "Feature", "properties": {"easting": 394500.0, "northing": 289500.0, "gridsq": "X394Y289", "numresp": 57, "numpeople": 133.38, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 289000.0], [394000.0, 289000.0], [394000.0, 290000.0], [395000.0, 290000.0], [395000.0, 289000.0]]]}}, {"id": "1778", "type": "Feature", "properties": {"easting": 398500.0, "northing": 289500.0, "gridsq": "X398Y289", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[399000.0, 289000.0], [398000.0, 289000.0], [398000.0, 290000.0], [399000.0, 290000.0], [399000.0, 289000.0]]]}}, {"id": "1779", "type": "Feature", "properties": {"easting": 415500.0, "northing": 289500.0, "gridsq": "X415Y289", "numresp": 118, "numpeople": 276.12, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 289000.0], [415000.0, 289000.0], [415000.0, 290000.0], [416000.0, 290000.0], [416000.0, 289000.0]]]}}, {"id": "1780", "type": "Feature", "properties": {"easting": 417500.0, "northing": 289500.0, "gridsq": "X417Y289", "numresp": 88, "numpeople": 205.92, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[418000.0, 289000.0], [417000.0, 289000.0], [417000.0, 290000.0], [418000.0, 290000.0], [418000.0, 289000.0]]]}}, {"id": "1781", "type": "Feature", "properties": {"easting": 396500.0, "northing": 290500.0, "gridsq": "X396Y290", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 290000.0], [396000.0, 290000.0], [396000.0, 291000.0], [397000.0, 291000.0], [397000.0, 290000.0]]]}}, {"id": "1782", "type": "Feature", "properties": {"easting": 406500.0, "northing": 290500.0, "gridsq": "X406Y290", "numresp": 153, "numpeople": 358.02, "numkeys": 2, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 290000.0], [406000.0, 290000.0], [406000.0, 291000.0], [407000.0, 291000.0], [407000.0, 290000.0]]]}}, {"id": "1783", "type": "Feature", "properties": {"easting": 408500.0, "northing": 290500.0, "gridsq": "X408Y290", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 290000.0], [408000.0, 290000.0], [408000.0, 291000.0], [409000.0, 291000.0], [409000.0, 290000.0]]]}}, {"id": "1784", "type": "Feature", "properties": {"easting": 411500.0, "northing": 290500.0, "gridsq": "X411Y290", "numresp": 31, "numpeople": 72.54, "numkeys": 1, "numnonresp": 162, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 290000.0], [411000.0, 290000.0], [411000.0, 291000.0], [412000.0, 291000.0], [412000.0, 290000.0]]]}}, {"id": "1785", "type": "Feature", "properties": {"easting": 435500.0, "northing": 290500.0, "gridsq": "X435Y290", "numresp": 27, "numpeople": 63.18, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 290000.0], [435000.0, 290000.0], [435000.0, 291000.0], [436000.0, 291000.0], [436000.0, 290000.0]]]}}, {"id": "1786", "type": "Feature", "properties": {"easting": 436500.0, "northing": 290500.0, "gridsq": "X436Y290", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 290000.0], [436000.0, 290000.0], [436000.0, 291000.0], [437000.0, 291000.0], [437000.0, 290000.0]]]}}, {"id": "1787", "type": "Feature", "properties": {"easting": 652500.0, "northing": 290500.0, "gridsq": "X652Y290", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[653000.0, 290000.0], [652000.0, 290000.0], [652000.0, 291000.0], [653000.0, 291000.0], [653000.0, 290000.0]]]}}, {"id": "1788", "type": "Feature", "properties": {"easting": 653500.0, "northing": 290500.0, "gridsq": "X653Y290", "numresp": 134, "numpeople": 313.56, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[654000.0, 290000.0], [653000.0, 290000.0], [653000.0, 291000.0], [654000.0, 291000.0], [654000.0, 290000.0]]]}}, {"id": "1789", "type": "Feature", "properties": {"easting": 395500.0, "northing": 291500.0, "gridsq": "X395Y291", "numresp": 166, "numpeople": 388.44, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 291000.0], [395000.0, 291000.0], [395000.0, 292000.0], [396000.0, 292000.0], [396000.0, 291000.0]]]}}, {"id": "1790", "type": "Feature", "properties": {"easting": 400500.0, "northing": 291500.0, "gridsq": "X400Y291", "numresp": 4, "numpeople": 9.36, "numkeys": 1, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 291000.0], [400000.0, 291000.0], [400000.0, 292000.0], [401000.0, 292000.0], [401000.0, 291000.0]]]}}, {"id": "1791", "type": "Feature", "properties": {"easting": 412500.0, "northing": 291500.0, "gridsq": "X412Y291", "numresp": 68, "numpeople": 159.12, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[413000.0, 291000.0], [412000.0, 291000.0], [412000.0, 292000.0], [413000.0, 292000.0], [413000.0, 291000.0]]]}}, {"id": "1792", "type": "Feature", "properties": {"easting": 436500.0, "northing": 291500.0, "gridsq": "X436Y291", "numresp": 31, "numpeople": 72.54, "numkeys": 4, "numnonresp": 150, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 291000.0], [436000.0, 291000.0], [436000.0, 292000.0], [437000.0, 292000.0], [437000.0, 291000.0]]]}}, {"id": "1793", "type": "Feature", "properties": {"easting": 488500.0, "northing": 291500.0, "gridsq": "X488Y291", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[489000.0, 291000.0], [488000.0, 291000.0], [488000.0, 292000.0], [489000.0, 292000.0], [489000.0, 291000.0]]]}}, {"id": "1794", "type": "Feature", "properties": {"easting": 385500.0, "northing": 292500.0, "gridsq": "X385Y292", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 292000.0], [385000.0, 292000.0], [385000.0, 293000.0], [386000.0, 293000.0], [386000.0, 292000.0]]]}}, {"id": "1795", "type": "Feature", "properties": {"easting": 393500.0, "northing": 292500.0, "gridsq": "X393Y292", "numresp": 95, "numpeople": 222.3, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 292000.0], [393000.0, 292000.0], [393000.0, 293000.0], [394000.0, 293000.0], [394000.0, 292000.0]]]}}, {"id": "1796", "type": "Feature", "properties": {"easting": 394500.0, "northing": 292500.0, "gridsq": "X394Y292", "numresp": 18, "numpeople": 42.12, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 292000.0], [394000.0, 292000.0], [394000.0, 293000.0], [395000.0, 293000.0], [395000.0, 292000.0]]]}}, {"id": "1797", "type": "Feature", "properties": {"easting": 395500.0, "northing": 292500.0, "gridsq": "X395Y292", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 292000.0], [395000.0, 292000.0], [395000.0, 293000.0], [396000.0, 293000.0], [396000.0, 292000.0]]]}}, {"id": "1798", "type": "Feature", "properties": {"easting": 404500.0, "northing": 292500.0, "gridsq": "X404Y292", "numresp": 138, "numpeople": 322.92, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 292000.0], [404000.0, 292000.0], [404000.0, 293000.0], [405000.0, 293000.0], [405000.0, 292000.0]]]}}, {"id": "1799", "type": "Feature", "properties": {"easting": 406500.0, "northing": 292500.0, "gridsq": "X406Y292", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 292000.0], [406000.0, 292000.0], [406000.0, 293000.0], [407000.0, 293000.0], [407000.0, 292000.0]]]}}, {"id": "1800", "type": "Feature", "properties": {"easting": 410500.0, "northing": 292500.0, "gridsq": "X410Y292", "numresp": 49, "numpeople": 114.66, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[411000.0, 292000.0], [410000.0, 292000.0], [410000.0, 293000.0], [411000.0, 293000.0], [411000.0, 292000.0]]]}}, {"id": "1801", "type": "Feature", "properties": {"easting": 619500.0, "northing": 292500.0, "gridsq": "X619Y292", "numresp": 70, "numpeople": 163.8, "numkeys": 0, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[620000.0, 292000.0], [619000.0, 292000.0], [619000.0, 293000.0], [620000.0, 293000.0], [620000.0, 292000.0]]]}}, {"id": "1802", "type": "Feature", "properties": {"easting": 654500.0, "northing": 292500.0, "gridsq": "X654Y292", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[655000.0, 292000.0], [654000.0, 292000.0], [654000.0, 293000.0], [655000.0, 293000.0], [655000.0, 292000.0]]]}}, {"id": "1803", "type": "Feature", "properties": {"easting": 371500.0, "northing": 293500.0, "gridsq": "X371Y293", "numresp": 16, "numpeople": 37.44, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 293000.0], [371000.0, 293000.0], [371000.0, 294000.0], [372000.0, 294000.0], [372000.0, 293000.0]]]}}, {"id": "1804", "type": "Feature", "properties": {"easting": 400500.0, "northing": 293500.0, "gridsq": "X400Y293", "numresp": 131, "numpeople": 306.54, "numkeys": 6, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 293000.0], [400000.0, 293000.0], [400000.0, 294000.0], [401000.0, 294000.0], [401000.0, 293000.0]]]}}, {"id": "1805", "type": "Feature", "properties": {"easting": 406500.0, "northing": 293500.0, "gridsq": "X406Y293", "numresp": 185, "numpeople": 432.9, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 293000.0], [406000.0, 293000.0], [406000.0, 294000.0], [407000.0, 294000.0], [407000.0, 293000.0]]]}}, {"id": "1806", "type": "Feature", "properties": {"easting": 408500.0, "northing": 293500.0, "gridsq": "X408Y293", "numresp": 168, "numpeople": 393.12, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 293000.0], [408000.0, 293000.0], [408000.0, 294000.0], [409000.0, 294000.0], [409000.0, 293000.0]]]}}, {"id": "1807", "type": "Feature", "properties": {"easting": 409500.0, "northing": 293500.0, "gridsq": "X409Y293", "numresp": 129, "numpeople": 301.86, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[410000.0, 293000.0], [409000.0, 293000.0], [409000.0, 294000.0], [410000.0, 294000.0], [410000.0, 293000.0]]]}}, {"id": "1808", "type": "Feature", "properties": {"easting": 442500.0, "northing": 293500.0, "gridsq": "X442Y293", "numresp": 73, "numpeople": 170.82, "numkeys": 1, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 293000.0], [442000.0, 293000.0], [442000.0, 294000.0], [443000.0, 294000.0], [443000.0, 293000.0]]]}}, {"id": "1809", "type": "Feature", "properties": {"easting": 468500.0, "northing": 293500.0, "gridsq": "X468Y293", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[469000.0, 293000.0], [468000.0, 293000.0], [468000.0, 294000.0], [469000.0, 294000.0], [469000.0, 293000.0]]]}}, {"id": "1810", "type": "Feature", "properties": {"easting": 654500.0, "northing": 293500.0, "gridsq": "X654Y293", "numresp": 76, "numpeople": 177.84, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[655000.0, 293000.0], [654000.0, 293000.0], [654000.0, 294000.0], [655000.0, 294000.0], [655000.0, 293000.0]]]}}, {"id": "1811", "type": "Feature", "properties": {"easting": 393500.0, "northing": 294500.0, "gridsq": "X393Y294", "numresp": 62, "numpeople": 145.08, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 294000.0], [393000.0, 294000.0], [393000.0, 295000.0], [394000.0, 295000.0], [394000.0, 294000.0]]]}}, {"id": "1812", "type": "Feature", "properties": {"easting": 408500.0, "northing": 294500.0, "gridsq": "X408Y294", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 294000.0], [408000.0, 294000.0], [408000.0, 295000.0], [409000.0, 295000.0], [409000.0, 294000.0]]]}}, {"id": "1813", "type": "Feature", "properties": {"easting": 605500.0, "northing": 294500.0, "gridsq": "X605Y294", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[606000.0, 294000.0], [605000.0, 294000.0], [605000.0, 295000.0], [606000.0, 295000.0], [606000.0, 294000.0]]]}}, {"id": "1814", "type": "Feature", "properties": {"easting": 392500.0, "northing": 295500.0, "gridsq": "X392Y295", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 295000.0], [392000.0, 295000.0], [392000.0, 296000.0], [393000.0, 296000.0], [393000.0, 295000.0]]]}}, {"id": "1815", "type": "Feature", "properties": {"easting": 393500.0, "northing": 295500.0, "gridsq": "X393Y295", "numresp": 43, "numpeople": 100.62, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 295000.0], [393000.0, 295000.0], [393000.0, 296000.0], [394000.0, 296000.0], [394000.0, 295000.0]]]}}, {"id": "1816", "type": "Feature", "properties": {"easting": 442500.0, "northing": 295500.0, "gridsq": "X442Y295", "numresp": 39, "numpeople": 91.26, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 295000.0], [442000.0, 295000.0], [442000.0, 296000.0], [443000.0, 296000.0], [443000.0, 295000.0]]]}}, {"id": "1817", "type": "Feature", "properties": {"easting": 388500.0, "northing": 296500.0, "gridsq": "X388Y296", "numresp": 256, "numpeople": 599.04, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 296000.0], [388000.0, 296000.0], [388000.0, 297000.0], [389000.0, 297000.0], [389000.0, 296000.0]]]}}, {"id": "1818", "type": "Feature", "properties": {"easting": 392500.0, "northing": 296500.0, "gridsq": "X392Y296", "numresp": 98, "numpeople": 229.32, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 296000.0], [392000.0, 296000.0], [392000.0, 297000.0], [393000.0, 297000.0], [393000.0, 296000.0]]]}}, {"id": "1819", "type": "Feature", "properties": {"easting": 411500.0, "northing": 296500.0, "gridsq": "X411Y296", "numresp": 142, "numpeople": 332.28, "numkeys": 0, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 296000.0], [411000.0, 296000.0], [411000.0, 297000.0], [412000.0, 297000.0], [412000.0, 296000.0]]]}}, {"id": "1820", "type": "Feature", "properties": {"easting": 412500.0, "northing": 296500.0, "gridsq": "X412Y296", "numresp": 132, "numpeople": 308.88, "numkeys": 1, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[413000.0, 296000.0], [412000.0, 296000.0], [412000.0, 297000.0], [413000.0, 297000.0], [413000.0, 296000.0]]]}}, {"id": "1821", "type": "Feature", "properties": {"easting": 520500.0, "northing": 296500.0, "gridsq": "X520Y296", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 296000.0], [520000.0, 296000.0], [520000.0, 297000.0], [521000.0, 297000.0], [521000.0, 296000.0]]]}}, {"id": "1822", "type": "Feature", "properties": {"easting": 541500.0, "northing": 296500.0, "gridsq": "X541Y296", "numresp": 165, "numpeople": 386.1, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 296000.0], [541000.0, 296000.0], [541000.0, 297000.0], [542000.0, 297000.0], [542000.0, 296000.0]]]}}, {"id": "1823", "type": "Feature", "properties": {"easting": 542500.0, "northing": 296500.0, "gridsq": "X542Y296", "numresp": 99, "numpeople": 231.66, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 296000.0], [542000.0, 296000.0], [542000.0, 297000.0], [543000.0, 297000.0], [543000.0, 296000.0]]]}}, {"id": "1824", "type": "Feature", "properties": {"easting": 389500.0, "northing": 297500.0, "gridsq": "X389Y297", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 297000.0], [389000.0, 297000.0], [389000.0, 298000.0], [390000.0, 298000.0], [390000.0, 297000.0]]]}}, {"id": "1825", "type": "Feature", "properties": {"easting": 391500.0, "northing": 297500.0, "gridsq": "X391Y297", "numresp": 47, "numpeople": 109.98, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 297000.0], [391000.0, 297000.0], [391000.0, 298000.0], [392000.0, 298000.0], [392000.0, 297000.0]]]}}, {"id": "1826", "type": "Feature", "properties": {"easting": 400500.0, "northing": 297500.0, "gridsq": "X400Y297", "numresp": 22, "numpeople": 51.48, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 297000.0], [400000.0, 297000.0], [400000.0, 298000.0], [401000.0, 298000.0], [401000.0, 297000.0]]]}}, {"id": "1827", "type": "Feature", "properties": {"easting": 456500.0, "northing": 297500.0, "gridsq": "X456Y297", "numresp": 79, "numpeople": 184.86, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 297000.0], [456000.0, 297000.0], [456000.0, 298000.0], [457000.0, 298000.0], [457000.0, 297000.0]]]}}, {"id": "1828", "type": "Feature", "properties": {"easting": 540500.0, "northing": 297500.0, "gridsq": "X540Y297", "numresp": 97, "numpeople": 226.98, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[541000.0, 297000.0], [540000.0, 297000.0], [540000.0, 298000.0], [541000.0, 298000.0], [541000.0, 297000.0]]]}}, {"id": "1829", "type": "Feature", "properties": {"easting": 541500.0, "northing": 297500.0, "gridsq": "X541Y297", "numresp": 132, "numpeople": 308.88, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[542000.0, 297000.0], [541000.0, 297000.0], [541000.0, 298000.0], [542000.0, 298000.0], [542000.0, 297000.0]]]}}, {"id": "1830", "type": "Feature", "properties": {"easting": 542500.0, "northing": 297500.0, "gridsq": "X542Y297", "numresp": 195, "numpeople": 456.3, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[543000.0, 297000.0], [542000.0, 297000.0], [542000.0, 298000.0], [543000.0, 298000.0], [543000.0, 297000.0]]]}}, {"id": "1831", "type": "Feature", "properties": {"easting": 389500.0, "northing": 298500.0, "gridsq": "X389Y298", "numresp": 123, "numpeople": 287.82, "numkeys": 5, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 298000.0], [389000.0, 298000.0], [389000.0, 299000.0], [390000.0, 299000.0], [390000.0, 298000.0]]]}}, {"id": "1832", "type": "Feature", "properties": {"easting": 391500.0, "northing": 298500.0, "gridsq": "X391Y298", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 298000.0], [391000.0, 298000.0], [391000.0, 299000.0], [392000.0, 299000.0], [392000.0, 298000.0]]]}}, {"id": "1833", "type": "Feature", "properties": {"easting": 399500.0, "northing": 298500.0, "gridsq": "X399Y298", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[400000.0, 298000.0], [399000.0, 298000.0], [399000.0, 299000.0], [400000.0, 299000.0], [400000.0, 298000.0]]]}}, {"id": "1834", "type": "Feature", "properties": {"easting": 401500.0, "northing": 298500.0, "gridsq": "X401Y298", "numresp": 118, "numpeople": 276.12, "numkeys": 3, "numnonresp": 198, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[402000.0, 298000.0], [401000.0, 298000.0], [401000.0, 299000.0], [402000.0, 299000.0], [402000.0, 298000.0]]]}}, {"id": "1835", "type": "Feature", "properties": {"easting": 459500.0, "northing": 298500.0, "gridsq": "X459Y298", "numresp": 28, "numpeople": 65.52, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 298000.0], [459000.0, 298000.0], [459000.0, 299000.0], [460000.0, 299000.0], [460000.0, 298000.0]]]}}, {"id": "1836", "type": "Feature", "properties": {"easting": 460500.0, "northing": 298500.0, "gridsq": "X460Y298", "numresp": 120, "numpeople": 280.8, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 298000.0], [460000.0, 298000.0], [460000.0, 299000.0], [461000.0, 299000.0], [461000.0, 298000.0]]]}}, {"id": "1837", "type": "Feature", "properties": {"easting": 519500.0, "northing": 298500.0, "gridsq": "X519Y298", "numresp": 33, "numpeople": 77.22, "numkeys": 2, "numnonresp": 150, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[520000.0, 298000.0], [519000.0, 298000.0], [519000.0, 299000.0], [520000.0, 299000.0], [520000.0, 298000.0]]]}}, {"id": "1838", "type": "Feature", "properties": {"easting": 386500.0, "northing": 299500.0, "gridsq": "X386Y299", "numresp": 259, "numpeople": 606.06, "numkeys": 4, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 299000.0], [386000.0, 299000.0], [386000.0, 300000.0], [387000.0, 300000.0], [387000.0, 299000.0]]]}}, {"id": "1839", "type": "Feature", "properties": {"easting": 390500.0, "northing": 299500.0, "gridsq": "X390Y299", "numresp": 163, "numpeople": 381.42, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 299000.0], [390000.0, 299000.0], [390000.0, 300000.0], [391000.0, 300000.0], [391000.0, 299000.0]]]}}, {"id": "1840", "type": "Feature", "properties": {"easting": 392500.0, "northing": 299500.0, "gridsq": "X392Y299", "numresp": 196, "numpeople": 458.64, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 299000.0], [392000.0, 299000.0], [392000.0, 300000.0], [393000.0, 300000.0], [393000.0, 299000.0]]]}}, {"id": "1841", "type": "Feature", "properties": {"easting": 394500.0, "northing": 299500.0, "gridsq": "X394Y299", "numresp": 0, "numpeople": 0.0, "numkeys": 1, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 299000.0], [394000.0, 299000.0], [394000.0, 300000.0], [395000.0, 300000.0], [395000.0, 299000.0]]]}}, {"id": "1842", "type": "Feature", "properties": {"easting": 397500.0, "northing": 299500.0, "gridsq": "X397Y299", "numresp": 157, "numpeople": 367.38, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[398000.0, 299000.0], [397000.0, 299000.0], [397000.0, 300000.0], [398000.0, 300000.0], [398000.0, 299000.0]]]}}, {"id": "1843", "type": "Feature", "properties": {"easting": 456500.0, "northing": 299500.0, "gridsq": "X456Y299", "numresp": 102, "numpeople": 238.68, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 299000.0], [456000.0, 299000.0], [456000.0, 300000.0], [457000.0, 300000.0], [457000.0, 299000.0]]]}}, {"id": "1844", "type": "Feature", "properties": {"easting": 521500.0, "northing": 299500.0, "gridsq": "X521Y299", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[522000.0, 299000.0], [521000.0, 299000.0], [521000.0, 300000.0], [522000.0, 300000.0], [522000.0, 299000.0]]]}}, {"id": "1845", "type": "Feature", "properties": {"easting": 389500.0, "northing": 300500.0, "gridsq": "X389Y300", "numresp": 178, "numpeople": 416.52, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 300000.0], [389000.0, 300000.0], [389000.0, 301000.0], [390000.0, 301000.0], [390000.0, 300000.0]]]}}, {"id": "1846", "type": "Feature", "properties": {"easting": 391500.0, "northing": 300500.0, "gridsq": "X391Y300", "numresp": 20, "numpeople": 46.8, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 300000.0], [391000.0, 300000.0], [391000.0, 301000.0], [392000.0, 301000.0], [392000.0, 300000.0]]]}}, {"id": "1847", "type": "Feature", "properties": {"easting": 392500.0, "northing": 300500.0, "gridsq": "X392Y300", "numresp": 116, "numpeople": 271.44, "numkeys": 0, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 300000.0], [392000.0, 300000.0], [392000.0, 301000.0], [393000.0, 301000.0], [393000.0, 300000.0]]]}}, {"id": "1848", "type": "Feature", "properties": {"easting": 399500.0, "northing": 300500.0, "gridsq": "X399Y300", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[400000.0, 300000.0], [399000.0, 300000.0], [399000.0, 301000.0], [400000.0, 301000.0], [400000.0, 300000.0]]]}}, {"id": "1849", "type": "Feature", "properties": {"easting": 400500.0, "northing": 300500.0, "gridsq": "X400Y300", "numresp": 15, "numpeople": 35.1, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 300000.0], [400000.0, 300000.0], [400000.0, 301000.0], [401000.0, 301000.0], [401000.0, 300000.0]]]}}, {"id": "1850", "type": "Feature", "properties": {"easting": 421500.0, "northing": 300500.0, "gridsq": "X421Y300", "numresp": 55, "numpeople": 128.7, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[422000.0, 300000.0], [421000.0, 300000.0], [421000.0, 301000.0], [422000.0, 301000.0], [422000.0, 300000.0]]]}}, {"id": "1851", "type": "Feature", "properties": {"easting": 422500.0, "northing": 300500.0, "gridsq": "X422Y300", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[423000.0, 300000.0], [422000.0, 300000.0], [422000.0, 301000.0], [423000.0, 301000.0], [423000.0, 300000.0]]]}}, {"id": "1852", "type": "Feature", "properties": {"easting": 458500.0, "northing": 300500.0, "gridsq": "X458Y300", "numresp": 144, "numpeople": 336.96, "numkeys": 0, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 300000.0], [458000.0, 300000.0], [458000.0, 301000.0], [459000.0, 301000.0], [459000.0, 300000.0]]]}}, {"id": "1853", "type": "Feature", "properties": {"easting": 459500.0, "northing": 300500.0, "gridsq": "X459Y300", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 300000.0], [459000.0, 300000.0], [459000.0, 301000.0], [460000.0, 301000.0], [460000.0, 300000.0]]]}}, {"id": "1854", "type": "Feature", "properties": {"easting": 462500.0, "northing": 300500.0, "gridsq": "X462Y300", "numresp": 112, "numpeople": 262.08, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[463000.0, 300000.0], [462000.0, 300000.0], [462000.0, 301000.0], [463000.0, 301000.0], [463000.0, 300000.0]]]}}, {"id": "1855", "type": "Feature", "properties": {"easting": 394500.0, "northing": 301500.0, "gridsq": "X394Y301", "numresp": 194, "numpeople": 453.96, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 301000.0], [394000.0, 301000.0], [394000.0, 302000.0], [395000.0, 302000.0], [395000.0, 301000.0]]]}}, {"id": "1856", "type": "Feature", "properties": {"easting": 395500.0, "northing": 301500.0, "gridsq": "X395Y301", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 301000.0], [395000.0, 301000.0], [395000.0, 302000.0], [396000.0, 302000.0], [396000.0, 301000.0]]]}}, {"id": "1857", "type": "Feature", "properties": {"easting": 396500.0, "northing": 301500.0, "gridsq": "X396Y301", "numresp": 97, "numpeople": 226.98, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 301000.0], [396000.0, 301000.0], [396000.0, 302000.0], [397000.0, 302000.0], [397000.0, 301000.0]]]}}, {"id": "1858", "type": "Feature", "properties": {"easting": 399500.0, "northing": 301500.0, "gridsq": "X399Y301", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[400000.0, 301000.0], [399000.0, 301000.0], [399000.0, 302000.0], [400000.0, 302000.0], [400000.0, 301000.0]]]}}, {"id": "1859", "type": "Feature", "properties": {"easting": 404500.0, "northing": 301500.0, "gridsq": "X404Y301", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 301000.0], [404000.0, 301000.0], [404000.0, 302000.0], [405000.0, 302000.0], [405000.0, 301000.0]]]}}, {"id": "1860", "type": "Feature", "properties": {"easting": 421500.0, "northing": 301500.0, "gridsq": "X421Y301", "numresp": 47, "numpeople": 109.98, "numkeys": 5, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[422000.0, 301000.0], [421000.0, 301000.0], [421000.0, 302000.0], [422000.0, 302000.0], [422000.0, 301000.0]]]}}, {"id": "1861", "type": "Feature", "properties": {"easting": 458500.0, "northing": 301500.0, "gridsq": "X458Y301", "numresp": 304, "numpeople": 711.36, "numkeys": 2, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 301000.0], [458000.0, 301000.0], [458000.0, 302000.0], [459000.0, 302000.0], [459000.0, 301000.0]]]}}, {"id": "1862", "type": "Feature", "properties": {"easting": 390500.0, "northing": 302500.0, "gridsq": "X390Y302", "numresp": 147, "numpeople": 343.98, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 302000.0], [390000.0, 302000.0], [390000.0, 303000.0], [391000.0, 303000.0], [391000.0, 302000.0]]]}}, {"id": "1863", "type": "Feature", "properties": {"easting": 400500.0, "northing": 302500.0, "gridsq": "X400Y302", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 302000.0], [400000.0, 302000.0], [400000.0, 303000.0], [401000.0, 303000.0], [401000.0, 302000.0]]]}}, {"id": "1864", "type": "Feature", "properties": {"easting": 421500.0, "northing": 302500.0, "gridsq": "X421Y302", "numresp": 25, "numpeople": 58.5, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[422000.0, 302000.0], [421000.0, 302000.0], [421000.0, 303000.0], [422000.0, 303000.0], [422000.0, 302000.0]]]}}, {"id": "1865", "type": "Feature", "properties": {"easting": 423500.0, "northing": 302500.0, "gridsq": "X423Y302", "numresp": 35, "numpeople": 81.9, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[424000.0, 302000.0], [423000.0, 302000.0], [423000.0, 303000.0], [424000.0, 303000.0], [424000.0, 302000.0]]]}}, {"id": "1866", "type": "Feature", "properties": {"easting": 458500.0, "northing": 302500.0, "gridsq": "X458Y302", "numresp": 180, "numpeople": 421.2, "numkeys": 1, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 302000.0], [458000.0, 302000.0], [458000.0, 303000.0], [459000.0, 303000.0], [459000.0, 302000.0]]]}}, {"id": "1867", "type": "Feature", "properties": {"easting": 494500.0, "northing": 302500.0, "gridsq": "X494Y302", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[495000.0, 302000.0], [494000.0, 302000.0], [494000.0, 303000.0], [495000.0, 303000.0], [495000.0, 302000.0]]]}}, {"id": "1868", "type": "Feature", "properties": {"easting": 516500.0, "northing": 302500.0, "gridsq": "X516Y302", "numresp": 32, "numpeople": 74.88, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[517000.0, 302000.0], [516000.0, 302000.0], [516000.0, 303000.0], [517000.0, 303000.0], [517000.0, 302000.0]]]}}, {"id": "1869", "type": "Feature", "properties": {"easting": 392500.0, "northing": 303500.0, "gridsq": "X392Y303", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 303000.0], [392000.0, 303000.0], [392000.0, 304000.0], [393000.0, 304000.0], [393000.0, 303000.0]]]}}, {"id": "1870", "type": "Feature", "properties": {"easting": 422500.0, "northing": 303500.0, "gridsq": "X422Y303", "numresp": 140, "numpeople": 327.6, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[423000.0, 303000.0], [422000.0, 303000.0], [422000.0, 304000.0], [423000.0, 304000.0], [423000.0, 303000.0]]]}}, {"id": "1871", "type": "Feature", "properties": {"easting": 458500.0, "northing": 303500.0, "gridsq": "X458Y303", "numresp": 174, "numpeople": 407.16, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 303000.0], [458000.0, 303000.0], [458000.0, 304000.0], [459000.0, 304000.0], [459000.0, 303000.0]]]}}, {"id": "1872", "type": "Feature", "properties": {"easting": 460500.0, "northing": 303500.0, "gridsq": "X460Y303", "numresp": 57, "numpeople": 133.38, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 303000.0], [460000.0, 303000.0], [460000.0, 304000.0], [461000.0, 304000.0], [461000.0, 303000.0]]]}}, {"id": "1873", "type": "Feature", "properties": {"easting": 369500.0, "northing": 304500.0, "gridsq": "X369Y304", "numresp": 18, "numpeople": 42.12, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 304000.0], [369000.0, 304000.0], [369000.0, 305000.0], [370000.0, 305000.0], [370000.0, 304000.0]]]}}, {"id": "1874", "type": "Feature", "properties": {"easting": 404500.0, "northing": 304500.0, "gridsq": "X404Y304", "numresp": 49, "numpeople": 114.66, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 304000.0], [404000.0, 304000.0], [404000.0, 305000.0], [405000.0, 305000.0], [405000.0, 304000.0]]]}}, {"id": "1875", "type": "Feature", "properties": {"easting": 456500.0, "northing": 304500.0, "gridsq": "X456Y304", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 304000.0], [456000.0, 304000.0], [456000.0, 305000.0], [457000.0, 305000.0], [457000.0, 304000.0]]]}}, {"id": "1876", "type": "Feature", "properties": {"easting": 457500.0, "northing": 304500.0, "gridsq": "X457Y304", "numresp": 564, "numpeople": 1319.76, "numkeys": 4, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 304000.0], [457000.0, 304000.0], [457000.0, 305000.0], [458000.0, 305000.0], [458000.0, 304000.0]]]}}, {"id": "1877", "type": "Feature", "properties": {"easting": 458500.0, "northing": 304500.0, "gridsq": "X458Y304", "numresp": 24, "numpeople": 56.16, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 304000.0], [458000.0, 304000.0], [458000.0, 305000.0], [459000.0, 305000.0], [459000.0, 304000.0]]]}}, {"id": "1878", "type": "Feature", "properties": {"easting": 459500.0, "northing": 304500.0, "gridsq": "X459Y304", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 57, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 304000.0], [459000.0, 304000.0], [459000.0, 305000.0], [460000.0, 305000.0], [460000.0, 304000.0]]]}}, {"id": "1879", "type": "Feature", "properties": {"easting": 460500.0, "northing": 304500.0, "gridsq": "X460Y304", "numresp": 275, "numpeople": 643.5, "numkeys": 3, "numnonresp": 87, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 304000.0], [460000.0, 304000.0], [460000.0, 305000.0], [461000.0, 305000.0], [461000.0, 304000.0]]]}}, {"id": "1880", "type": "Feature", "properties": {"easting": 461500.0, "northing": 304500.0, "gridsq": "X461Y304", "numresp": 185, "numpeople": 432.9, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 304000.0], [461000.0, 304000.0], [461000.0, 305000.0], [462000.0, 305000.0], [462000.0, 304000.0]]]}}, {"id": "1881", "type": "Feature", "properties": {"easting": 462500.0, "northing": 304500.0, "gridsq": "X462Y304", "numresp": 57, "numpeople": 133.38, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[463000.0, 304000.0], [462000.0, 304000.0], [462000.0, 305000.0], [463000.0, 305000.0], [463000.0, 304000.0]]]}}, {"id": "1882", "type": "Feature", "properties": {"easting": 498500.0, "northing": 304500.0, "gridsq": "X498Y304", "numresp": 13, "numpeople": 30.42, "numkeys": 4, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 304000.0], [498000.0, 304000.0], [498000.0, 305000.0], [499000.0, 305000.0], [499000.0, 304000.0]]]}}, {"id": "1883", "type": "Feature", "properties": {"easting": 369500.0, "northing": 305500.0, "gridsq": "X369Y305", "numresp": 31, "numpeople": 72.54, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 305000.0], [369000.0, 305000.0], [369000.0, 306000.0], [370000.0, 306000.0], [370000.0, 305000.0]]]}}, {"id": "1884", "type": "Feature", "properties": {"easting": 404500.0, "northing": 305500.0, "gridsq": "X404Y305", "numresp": 16, "numpeople": 37.44, "numkeys": 3, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 305000.0], [404000.0, 305000.0], [404000.0, 306000.0], [405000.0, 306000.0], [405000.0, 305000.0]]]}}, {"id": "1885", "type": "Feature", "properties": {"easting": 457500.0, "northing": 305500.0, "gridsq": "X457Y305", "numresp": 101, "numpeople": 236.34, "numkeys": 3, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 305000.0], [457000.0, 305000.0], [457000.0, 306000.0], [458000.0, 306000.0], [458000.0, 305000.0]]]}}, {"id": "1886", "type": "Feature", "properties": {"easting": 459500.0, "northing": 305500.0, "gridsq": "X459Y305", "numresp": 18, "numpeople": 42.12, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 305000.0], [459000.0, 305000.0], [459000.0, 306000.0], [460000.0, 306000.0], [460000.0, 305000.0]]]}}, {"id": "1887", "type": "Feature", "properties": {"easting": 460500.0, "northing": 305500.0, "gridsq": "X460Y305", "numresp": 71, "numpeople": 166.14, "numkeys": 2, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 305000.0], [460000.0, 305000.0], [460000.0, 306000.0], [461000.0, 306000.0], [461000.0, 305000.0]]]}}, {"id": "1888", "type": "Feature", "properties": {"easting": 461500.0, "northing": 305500.0, "gridsq": "X461Y305", "numresp": 179, "numpeople": 418.86, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 305000.0], [461000.0, 305000.0], [461000.0, 306000.0], [462000.0, 306000.0], [462000.0, 305000.0]]]}}, {"id": "1889", "type": "Feature", "properties": {"easting": 462500.0, "northing": 305500.0, "gridsq": "X462Y305", "numresp": 64, "numpeople": 149.76, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[463000.0, 305000.0], [462000.0, 305000.0], [462000.0, 306000.0], [463000.0, 306000.0], [463000.0, 305000.0]]]}}, {"id": "1890", "type": "Feature", "properties": {"easting": 458500.0, "northing": 307500.0, "gridsq": "X458Y307", "numresp": 110, "numpeople": 257.4, "numkeys": 0, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 307000.0], [458000.0, 307000.0], [458000.0, 308000.0], [459000.0, 308000.0], [459000.0, 307000.0]]]}}, {"id": "1891", "type": "Feature", "properties": {"easting": 460500.0, "northing": 307500.0, "gridsq": "X460Y307", "numresp": 28, "numpeople": 65.52, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 307000.0], [460000.0, 307000.0], [460000.0, 308000.0], [461000.0, 308000.0], [461000.0, 307000.0]]]}}, {"id": "1892", "type": "Feature", "properties": {"easting": 461500.0, "northing": 307500.0, "gridsq": "X461Y307", "numresp": 213, "numpeople": 498.42, "numkeys": 4, "numnonresp": 69, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 307000.0], [461000.0, 307000.0], [461000.0, 308000.0], [462000.0, 308000.0], [462000.0, 307000.0]]]}}, {"id": "1893", "type": "Feature", "properties": {"easting": 462500.0, "northing": 307500.0, "gridsq": "X462Y307", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[463000.0, 307000.0], [462000.0, 307000.0], [462000.0, 308000.0], [463000.0, 308000.0], [463000.0, 307000.0]]]}}, {"id": "1894", "type": "Feature", "properties": {"easting": 502500.0, "northing": 307500.0, "gridsq": "X502Y307", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 307000.0], [502000.0, 307000.0], [502000.0, 308000.0], [503000.0, 308000.0], [503000.0, 307000.0]]]}}, {"id": "1895", "type": "Feature", "properties": {"easting": 503500.0, "northing": 307500.0, "gridsq": "X503Y307", "numresp": 107, "numpeople": 250.38, "numkeys": 0, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[504000.0, 307000.0], [503000.0, 307000.0], [503000.0, 308000.0], [504000.0, 308000.0], [504000.0, 307000.0]]]}}, {"id": "1896", "type": "Feature", "properties": {"easting": 622500.0, "northing": 307500.0, "gridsq": "X622Y307", "numresp": 24, "numpeople": 56.16, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 307000.0], [622000.0, 307000.0], [622000.0, 308000.0], [623000.0, 308000.0], [623000.0, 307000.0]]]}}, {"id": "1897", "type": "Feature", "properties": {"easting": 652500.0, "northing": 307500.0, "gridsq": "X652Y307", "numresp": 180, "numpeople": 421.2, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[653000.0, 307000.0], [652000.0, 307000.0], [652000.0, 308000.0], [653000.0, 308000.0], [653000.0, 307000.0]]]}}, {"id": "1898", "type": "Feature", "properties": {"easting": 371500.0, "northing": 308500.0, "gridsq": "X371Y308", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 66, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 308000.0], [371000.0, 308000.0], [371000.0, 309000.0], [372000.0, 309000.0], [372000.0, 308000.0]]]}}, {"id": "1899", "type": "Feature", "properties": {"easting": 402500.0, "northing": 308500.0, "gridsq": "X402Y308", "numresp": 87, "numpeople": 203.58, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[403000.0, 308000.0], [402000.0, 308000.0], [402000.0, 309000.0], [403000.0, 309000.0], [403000.0, 308000.0]]]}}, {"id": "1900", "type": "Feature", "properties": {"easting": 454500.0, "northing": 308500.0, "gridsq": "X454Y308", "numresp": 28, "numpeople": 65.52, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 308000.0], [454000.0, 308000.0], [454000.0, 309000.0], [455000.0, 309000.0], [455000.0, 308000.0]]]}}, {"id": "1901", "type": "Feature", "properties": {"easting": 460500.0, "northing": 308500.0, "gridsq": "X460Y308", "numresp": 139, "numpeople": 325.26, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 308000.0], [460000.0, 308000.0], [460000.0, 309000.0], [461000.0, 309000.0], [461000.0, 308000.0]]]}}, {"id": "1902", "type": "Feature", "properties": {"easting": 461500.0, "northing": 308500.0, "gridsq": "X461Y308", "numresp": 115, "numpeople": 269.1, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 308000.0], [461000.0, 308000.0], [461000.0, 309000.0], [462000.0, 309000.0], [462000.0, 308000.0]]]}}, {"id": "1903", "type": "Feature", "properties": {"easting": 485500.0, "northing": 308500.0, "gridsq": "X485Y308", "numresp": 133, "numpeople": 311.22, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 308000.0], [485000.0, 308000.0], [485000.0, 309000.0], [486000.0, 309000.0], [486000.0, 308000.0]]]}}, {"id": "1904", "type": "Feature", "properties": {"easting": 486500.0, "northing": 308500.0, "gridsq": "X486Y308", "numresp": 23, "numpeople": 53.82, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 308000.0], [486000.0, 308000.0], [486000.0, 309000.0], [487000.0, 309000.0], [487000.0, 308000.0]]]}}, {"id": "1905", "type": "Feature", "properties": {"easting": 487500.0, "northing": 308500.0, "gridsq": "X487Y308", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 308000.0], [487000.0, 308000.0], [487000.0, 309000.0], [488000.0, 309000.0], [488000.0, 308000.0]]]}}, {"id": "1906", "type": "Feature", "properties": {"easting": 621500.0, "northing": 308500.0, "gridsq": "X621Y308", "numresp": 332, "numpeople": 776.88, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[622000.0, 308000.0], [621000.0, 308000.0], [621000.0, 309000.0], [622000.0, 309000.0], [622000.0, 308000.0]]]}}, {"id": "1907", "type": "Feature", "properties": {"easting": 622500.0, "northing": 308500.0, "gridsq": "X622Y308", "numresp": 40, "numpeople": 93.6, "numkeys": 2, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 308000.0], [622000.0, 308000.0], [622000.0, 309000.0], [623000.0, 309000.0], [623000.0, 308000.0]]]}}, {"id": "1908", "type": "Feature", "properties": {"easting": 623500.0, "northing": 308500.0, "gridsq": "X623Y308", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 141, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[624000.0, 308000.0], [623000.0, 308000.0], [623000.0, 309000.0], [624000.0, 309000.0], [624000.0, 308000.0]]]}}, {"id": "1909", "type": "Feature", "properties": {"easting": 627500.0, "northing": 308500.0, "gridsq": "X627Y308", "numresp": 1, "numpeople": 2.34, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[628000.0, 308000.0], [627000.0, 308000.0], [627000.0, 309000.0], [628000.0, 309000.0], [628000.0, 308000.0]]]}}, {"id": "1910", "type": "Feature", "properties": {"easting": 370500.0, "northing": 309500.0, "gridsq": "X370Y309", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[371000.0, 309000.0], [370000.0, 309000.0], [370000.0, 310000.0], [371000.0, 310000.0], [371000.0, 309000.0]]]}}, {"id": "1911", "type": "Feature", "properties": {"easting": 411500.0, "northing": 309500.0, "gridsq": "X411Y309", "numresp": 69, "numpeople": 161.46, "numkeys": 2, "numnonresp": 65, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 309000.0], [411000.0, 309000.0], [411000.0, 310000.0], [412000.0, 310000.0], [412000.0, 309000.0]]]}}, {"id": "1912", "type": "Feature", "properties": {"easting": 459500.0, "northing": 309500.0, "gridsq": "X459Y309", "numresp": 131, "numpeople": 306.54, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 309000.0], [459000.0, 309000.0], [459000.0, 310000.0], [460000.0, 310000.0], [460000.0, 309000.0]]]}}, {"id": "1913", "type": "Feature", "properties": {"easting": 485500.0, "northing": 309500.0, "gridsq": "X485Y309", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[486000.0, 309000.0], [485000.0, 309000.0], [485000.0, 310000.0], [486000.0, 310000.0], [486000.0, 309000.0]]]}}, {"id": "1914", "type": "Feature", "properties": {"easting": 486500.0, "northing": 309500.0, "gridsq": "X486Y309", "numresp": 28, "numpeople": 65.52, "numkeys": 4, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 309000.0], [486000.0, 309000.0], [486000.0, 310000.0], [487000.0, 310000.0], [487000.0, 309000.0]]]}}, {"id": "1915", "type": "Feature", "properties": {"easting": 617500.0, "northing": 309500.0, "gridsq": "X617Y309", "numresp": 45, "numpeople": 105.3, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[618000.0, 309000.0], [617000.0, 309000.0], [617000.0, 310000.0], [618000.0, 310000.0], [618000.0, 309000.0]]]}}, {"id": "1916", "type": "Feature", "properties": {"easting": 622500.0, "northing": 309500.0, "gridsq": "X622Y309", "numresp": 399, "numpeople": 933.66, "numkeys": 1, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 309000.0], [622000.0, 309000.0], [622000.0, 310000.0], [623000.0, 310000.0], [623000.0, 309000.0]]]}}, {"id": "1917", "type": "Feature", "properties": {"easting": 623500.0, "northing": 309500.0, "gridsq": "X623Y309", "numresp": 67, "numpeople": 156.78, "numkeys": 0, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[624000.0, 309000.0], [623000.0, 309000.0], [623000.0, 310000.0], [624000.0, 310000.0], [624000.0, 309000.0]]]}}, {"id": "1918", "type": "Feature", "properties": {"easting": 625500.0, "northing": 309500.0, "gridsq": "X625Y309", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[626000.0, 309000.0], [625000.0, 309000.0], [625000.0, 310000.0], [626000.0, 310000.0], [626000.0, 309000.0]]]}}, {"id": "1919", "type": "Feature", "properties": {"easting": 411500.0, "northing": 310500.0, "gridsq": "X411Y310", "numresp": 72, "numpeople": 168.48, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 310000.0], [411000.0, 310000.0], [411000.0, 311000.0], [412000.0, 311000.0], [412000.0, 310000.0]]]}}, {"id": "1920", "type": "Feature", "properties": {"easting": 622500.0, "northing": 310500.0, "gridsq": "X622Y310", "numresp": 274, "numpeople": 641.16, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 310000.0], [622000.0, 310000.0], [622000.0, 311000.0], [623000.0, 311000.0], [623000.0, 310000.0]]]}}, {"id": "1921", "type": "Feature", "properties": {"easting": 623500.0, "northing": 310500.0, "gridsq": "X623Y310", "numresp": 148, "numpeople": 346.32, "numkeys": 1, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[624000.0, 310000.0], [623000.0, 310000.0], [623000.0, 311000.0], [624000.0, 311000.0], [624000.0, 310000.0]]]}}, {"id": "1922", "type": "Feature", "properties": {"easting": 351500.0, "northing": 311500.0, "gridsq": "X351Y311", "numresp": 1, "numpeople": 2.34, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[352000.0, 311000.0], [351000.0, 311000.0], [351000.0, 312000.0], [352000.0, 312000.0], [352000.0, 311000.0]]]}}, {"id": "1923", "type": "Feature", "properties": {"easting": 369500.0, "northing": 311500.0, "gridsq": "X369Y311", "numresp": 21, "numpeople": 49.14, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 311000.0], [369000.0, 311000.0], [369000.0, 312000.0], [370000.0, 312000.0], [370000.0, 311000.0]]]}}, {"id": "1924", "type": "Feature", "properties": {"easting": 398500.0, "northing": 311500.0, "gridsq": "X398Y311", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[399000.0, 311000.0], [398000.0, 311000.0], [398000.0, 312000.0], [399000.0, 312000.0], [399000.0, 311000.0]]]}}, {"id": "1925", "type": "Feature", "properties": {"easting": 399500.0, "northing": 311500.0, "gridsq": "X399Y311", "numresp": 58, "numpeople": 135.72, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[400000.0, 311000.0], [399000.0, 311000.0], [399000.0, 312000.0], [400000.0, 312000.0], [400000.0, 311000.0]]]}}, {"id": "1926", "type": "Feature", "properties": {"easting": 484500.0, "northing": 311500.0, "gridsq": "X484Y311", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[485000.0, 311000.0], [484000.0, 311000.0], [484000.0, 312000.0], [485000.0, 312000.0], [485000.0, 311000.0]]]}}, {"id": "1927", "type": "Feature", "properties": {"easting": 486500.0, "northing": 311500.0, "gridsq": "X486Y311", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[487000.0, 311000.0], [486000.0, 311000.0], [486000.0, 312000.0], [487000.0, 312000.0], [487000.0, 311000.0]]]}}, {"id": "1928", "type": "Feature", "properties": {"easting": 622500.0, "northing": 311500.0, "gridsq": "X622Y311", "numresp": 171, "numpeople": 400.14, "numkeys": 0, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 311000.0], [622000.0, 311000.0], [622000.0, 312000.0], [623000.0, 312000.0], [623000.0, 311000.0]]]}}, {"id": "1929", "type": "Feature", "properties": {"easting": 652500.0, "northing": 311500.0, "gridsq": "X652Y311", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[653000.0, 311000.0], [652000.0, 311000.0], [652000.0, 312000.0], [653000.0, 312000.0], [653000.0, 311000.0]]]}}, {"id": "1930", "type": "Feature", "properties": {"easting": 622500.0, "northing": 312500.0, "gridsq": "X622Y312", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 312000.0], [622000.0, 312000.0], [622000.0, 313000.0], [623000.0, 313000.0], [623000.0, 312000.0]]]}}, {"id": "1931", "type": "Feature", "properties": {"easting": 623500.0, "northing": 312500.0, "gridsq": "X623Y312", "numresp": 80, "numpeople": 187.2, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[624000.0, 312000.0], [623000.0, 312000.0], [623000.0, 313000.0], [624000.0, 313000.0], [624000.0, 312000.0]]]}}, {"id": "1932", "type": "Feature", "properties": {"easting": 599500.0, "northing": 313500.0, "gridsq": "X599Y313", "numresp": 36, "numpeople": 84.24, "numkeys": 3, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[600000.0, 313000.0], [599000.0, 313000.0], [599000.0, 314000.0], [600000.0, 314000.0], [600000.0, 313000.0]]]}}, {"id": "1933", "type": "Feature", "properties": {"easting": 618500.0, "northing": 313500.0, "gridsq": "X618Y313", "numresp": 23, "numpeople": 53.82, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[619000.0, 313000.0], [618000.0, 313000.0], [618000.0, 314000.0], [619000.0, 314000.0], [619000.0, 313000.0]]]}}, {"id": "1934", "type": "Feature", "properties": {"easting": 392500.0, "northing": 314500.0, "gridsq": "X392Y314", "numresp": 17, "numpeople": 39.78, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 314000.0], [392000.0, 314000.0], [392000.0, 315000.0], [393000.0, 315000.0], [393000.0, 314000.0]]]}}, {"id": "1935", "type": "Feature", "properties": {"easting": 442500.0, "northing": 314500.0, "gridsq": "X442Y314", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 314000.0], [442000.0, 314000.0], [442000.0, 315000.0], [443000.0, 315000.0], [443000.0, 314000.0]]]}}, {"id": "1936", "type": "Feature", "properties": {"easting": 460500.0, "northing": 315500.0, "gridsq": "X460Y315", "numresp": 148, "numpeople": 346.32, "numkeys": 1, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 315000.0], [460000.0, 315000.0], [460000.0, 316000.0], [461000.0, 316000.0], [461000.0, 315000.0]]]}}, {"id": "1937", "type": "Feature", "properties": {"easting": 405500.0, "northing": 316500.0, "gridsq": "X405Y316", "numresp": 37, "numpeople": 86.58, "numkeys": 0, "numnonresp": 53, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[406000.0, 316000.0], [405000.0, 316000.0], [405000.0, 317000.0], [406000.0, 317000.0], [406000.0, 316000.0]]]}}, {"id": "1938", "type": "Feature", "properties": {"easting": 435500.0, "northing": 316500.0, "gridsq": "X435Y316", "numresp": 111, "numpeople": 259.74, "numkeys": 4, "numnonresp": 85, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 316000.0], [435000.0, 316000.0], [435000.0, 317000.0], [436000.0, 317000.0], [436000.0, 316000.0]]]}}, {"id": "1939", "type": "Feature", "properties": {"easting": 597500.0, "northing": 316500.0, "gridsq": "X597Y316", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[598000.0, 316000.0], [597000.0, 316000.0], [597000.0, 317000.0], [598000.0, 317000.0], [598000.0, 316000.0]]]}}, {"id": "1940", "type": "Feature", "properties": {"easting": 404500.0, "northing": 317500.0, "gridsq": "X404Y317", "numresp": 71, "numpeople": 166.14, "numkeys": 2, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 317000.0], [404000.0, 317000.0], [404000.0, 318000.0], [405000.0, 318000.0], [405000.0, 317000.0]]]}}, {"id": "1941", "type": "Feature", "properties": {"easting": 403500.0, "northing": 318500.0, "gridsq": "X403Y318", "numresp": 94, "numpeople": 219.96, "numkeys": 4, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[404000.0, 318000.0], [403000.0, 318000.0], [403000.0, 319000.0], [404000.0, 319000.0], [404000.0, 318000.0]]]}}, {"id": "1942", "type": "Feature", "properties": {"easting": 404500.0, "northing": 318500.0, "gridsq": "X404Y318", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 318000.0], [404000.0, 318000.0], [404000.0, 319000.0], [405000.0, 319000.0], [405000.0, 318000.0]]]}}, {"id": "1943", "type": "Feature", "properties": {"easting": 419500.0, "northing": 318500.0, "gridsq": "X419Y318", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[420000.0, 318000.0], [419000.0, 318000.0], [419000.0, 319000.0], [420000.0, 319000.0], [420000.0, 318000.0]]]}}, {"id": "1944", "type": "Feature", "properties": {"easting": 447500.0, "northing": 318500.0, "gridsq": "X447Y318", "numresp": 27, "numpeople": 63.18, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 318000.0], [447000.0, 318000.0], [447000.0, 319000.0], [448000.0, 319000.0], [448000.0, 318000.0]]]}}, {"id": "1945", "type": "Feature", "properties": {"easting": 452500.0, "northing": 318500.0, "gridsq": "X452Y318", "numresp": 159, "numpeople": 372.06, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[453000.0, 318000.0], [452000.0, 318000.0], [452000.0, 319000.0], [453000.0, 319000.0], [453000.0, 318000.0]]]}}, {"id": "1946", "type": "Feature", "properties": {"easting": 453500.0, "northing": 318500.0, "gridsq": "X453Y318", "numresp": 98, "numpeople": 229.32, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[454000.0, 318000.0], [453000.0, 318000.0], [453000.0, 319000.0], [454000.0, 319000.0], [454000.0, 318000.0]]]}}, {"id": "1947", "type": "Feature", "properties": {"easting": 447500.0, "northing": 319500.0, "gridsq": "X447Y319", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 319000.0], [447000.0, 319000.0], [447000.0, 320000.0], [448000.0, 320000.0], [448000.0, 319000.0]]]}}, {"id": "1948", "type": "Feature", "properties": {"easting": 452500.0, "northing": 319500.0, "gridsq": "X452Y319", "numresp": 146, "numpeople": 341.64, "numkeys": 7, "numnonresp": 52, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[453000.0, 319000.0], [452000.0, 319000.0], [452000.0, 320000.0], [453000.0, 320000.0], [453000.0, 319000.0]]]}}, {"id": "1949", "type": "Feature", "properties": {"easting": 453500.0, "northing": 319500.0, "gridsq": "X453Y319", "numresp": 87, "numpeople": 203.58, "numkeys": 2, "numnonresp": 154, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[454000.0, 319000.0], [453000.0, 319000.0], [453000.0, 320000.0], [454000.0, 320000.0], [454000.0, 319000.0]]]}}, {"id": "1950", "type": "Feature", "properties": {"easting": 564500.0, "northing": 319500.0, "gridsq": "X564Y319", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[565000.0, 319000.0], [564000.0, 319000.0], [564000.0, 320000.0], [565000.0, 320000.0], [565000.0, 319000.0]]]}}, {"id": "1951", "type": "Feature", "properties": {"easting": 428500.0, "northing": 320500.0, "gridsq": "X428Y320", "numresp": 118, "numpeople": 276.12, "numkeys": 1, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 320000.0], [428000.0, 320000.0], [428000.0, 321000.0], [429000.0, 321000.0], [429000.0, 320000.0]]]}}, {"id": "1952", "type": "Feature", "properties": {"easting": 392500.0, "northing": 321500.0, "gridsq": "X392Y321", "numresp": 98, "numpeople": 229.32, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 321000.0], [392000.0, 321000.0], [392000.0, 322000.0], [393000.0, 322000.0], [393000.0, 321000.0]]]}}, {"id": "1953", "type": "Feature", "properties": {"easting": 391500.0, "northing": 323500.0, "gridsq": "X391Y323", "numresp": 9, "numpeople": 21.06, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 323000.0], [391000.0, 323000.0], [391000.0, 324000.0], [392000.0, 324000.0], [392000.0, 323000.0]]]}}, {"id": "1954", "type": "Feature", "properties": {"easting": 460500.0, "northing": 323500.0, "gridsq": "X460Y323", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 323000.0], [460000.0, 323000.0], [460000.0, 324000.0], [461000.0, 324000.0], [461000.0, 323000.0]]]}}, {"id": "1955", "type": "Feature", "properties": {"easting": 451500.0, "northing": 324500.0, "gridsq": "X451Y324", "numresp": 2, "numpeople": 4.68, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 324000.0], [451000.0, 324000.0], [451000.0, 325000.0], [452000.0, 325000.0], [452000.0, 324000.0]]]}}, {"id": "1956", "type": "Feature", "properties": {"easting": 424500.0, "northing": 325500.0, "gridsq": "X424Y325", "numresp": 184, "numpeople": 430.56, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 325000.0], [424000.0, 325000.0], [424000.0, 326000.0], [425000.0, 326000.0], [425000.0, 325000.0]]]}}, {"id": "1957", "type": "Feature", "properties": {"easting": 350500.0, "northing": 328500.0, "gridsq": "X350Y328", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[351000.0, 328000.0], [350000.0, 328000.0], [350000.0, 329000.0], [351000.0, 329000.0], [351000.0, 328000.0]]]}}, {"id": "1958", "type": "Feature", "properties": {"easting": 329500.0, "northing": 329500.0, "gridsq": "X329Y329", "numresp": 30, "numpeople": 70.2, "numkeys": 2, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[330000.0, 329000.0], [329000.0, 329000.0], [329000.0, 330000.0], [330000.0, 330000.0], [330000.0, 329000.0]]]}}, {"id": "1959", "type": "Feature", "properties": {"easting": 437500.0, "northing": 330500.0, "gridsq": "X437Y330", "numresp": 53, "numpeople": 124.02, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[438000.0, 330000.0], [437000.0, 330000.0], [437000.0, 331000.0], [438000.0, 331000.0], [438000.0, 330000.0]]]}}, {"id": "1960", "type": "Feature", "properties": {"easting": 628500.0, "northing": 330500.0, "gridsq": "X628Y330", "numresp": 102, "numpeople": 238.68, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[629000.0, 330000.0], [628000.0, 330000.0], [628000.0, 331000.0], [629000.0, 331000.0], [629000.0, 330000.0]]]}}, {"id": "1961", "type": "Feature", "properties": {"easting": 434500.0, "northing": 331500.0, "gridsq": "X434Y331", "numresp": 32, "numpeople": 74.88, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 331000.0], [434000.0, 331000.0], [434000.0, 332000.0], [435000.0, 332000.0], [435000.0, 331000.0]]]}}, {"id": "1962", "type": "Feature", "properties": {"easting": 431500.0, "northing": 332500.0, "gridsq": "X431Y332", "numresp": 54, "numpeople": 126.36, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 332000.0], [431000.0, 332000.0], [431000.0, 333000.0], [432000.0, 333000.0], [432000.0, 332000.0]]]}}, {"id": "1963", "type": "Feature", "properties": {"easting": 434500.0, "northing": 332500.0, "gridsq": "X434Y332", "numresp": 140, "numpeople": 327.6, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 332000.0], [434000.0, 332000.0], [434000.0, 333000.0], [435000.0, 333000.0], [435000.0, 332000.0]]]}}, {"id": "1964", "type": "Feature", "properties": {"easting": 390500.0, "northing": 333500.0, "gridsq": "X390Y333", "numresp": 162, "numpeople": 379.08, "numkeys": 1, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 333000.0], [390000.0, 333000.0], [390000.0, 334000.0], [391000.0, 334000.0], [391000.0, 333000.0]]]}}, {"id": "1965", "type": "Feature", "properties": {"easting": 449500.0, "northing": 333500.0, "gridsq": "X449Y333", "numresp": 28, "numpeople": 65.52, "numkeys": 3, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[450000.0, 333000.0], [449000.0, 333000.0], [449000.0, 334000.0], [450000.0, 334000.0], [450000.0, 333000.0]]]}}, {"id": "1966", "type": "Feature", "properties": {"easting": 455500.0, "northing": 333500.0, "gridsq": "X455Y333", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[456000.0, 333000.0], [455000.0, 333000.0], [455000.0, 334000.0], [456000.0, 334000.0], [456000.0, 333000.0]]]}}, {"id": "1967", "type": "Feature", "properties": {"easting": 457500.0, "northing": 333500.0, "gridsq": "X457Y333", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 333000.0], [457000.0, 333000.0], [457000.0, 334000.0], [458000.0, 334000.0], [458000.0, 333000.0]]]}}, {"id": "1968", "type": "Feature", "properties": {"easting": 435500.0, "northing": 334500.0, "gridsq": "X435Y334", "numresp": 477, "numpeople": 1116.18, "numkeys": 2, "numnonresp": 89, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 334000.0], [435000.0, 334000.0], [435000.0, 335000.0], [436000.0, 335000.0], [436000.0, 334000.0]]]}}, {"id": "1969", "type": "Feature", "properties": {"easting": 434500.0, "northing": 335500.0, "gridsq": "X434Y335", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 335000.0], [434000.0, 335000.0], [434000.0, 336000.0], [435000.0, 336000.0], [435000.0, 335000.0]]]}}, {"id": "1970", "type": "Feature", "properties": {"easting": 437500.0, "northing": 335500.0, "gridsq": "X437Y335", "numresp": 79, "numpeople": 184.86, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[438000.0, 335000.0], [437000.0, 335000.0], [437000.0, 336000.0], [438000.0, 336000.0], [438000.0, 335000.0]]]}}, {"id": "1971", "type": "Feature", "properties": {"easting": 438500.0, "northing": 335500.0, "gridsq": "X438Y335", "numresp": 29, "numpeople": 67.86, "numkeys": 5, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 335000.0], [438000.0, 335000.0], [438000.0, 336000.0], [439000.0, 336000.0], [439000.0, 335000.0]]]}}, {"id": "1972", "type": "Feature", "properties": {"easting": 440500.0, "northing": 335500.0, "gridsq": "X440Y335", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[441000.0, 335000.0], [440000.0, 335000.0], [440000.0, 336000.0], [441000.0, 336000.0], [441000.0, 335000.0]]]}}, {"id": "1973", "type": "Feature", "properties": {"easting": 490500.0, "northing": 335500.0, "gridsq": "X490Y335", "numresp": 103, "numpeople": 241.02, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[491000.0, 335000.0], [490000.0, 335000.0], [490000.0, 336000.0], [491000.0, 336000.0], [491000.0, 335000.0]]]}}, {"id": "1974", "type": "Feature", "properties": {"easting": 491500.0, "northing": 335500.0, "gridsq": "X491Y335", "numresp": 72, "numpeople": 168.48, "numkeys": 4, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[492000.0, 335000.0], [491000.0, 335000.0], [491000.0, 336000.0], [492000.0, 336000.0], [492000.0, 335000.0]]]}}, {"id": "1975", "type": "Feature", "properties": {"easting": 434500.0, "northing": 336500.0, "gridsq": "X434Y336", "numresp": 316, "numpeople": 739.44, "numkeys": 1, "numnonresp": 77, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 336000.0], [434000.0, 336000.0], [434000.0, 337000.0], [435000.0, 337000.0], [435000.0, 336000.0]]]}}, {"id": "1976", "type": "Feature", "properties": {"easting": 435500.0, "northing": 336500.0, "gridsq": "X435Y336", "numresp": 34, "numpeople": 79.56, "numkeys": 1, "numnonresp": 298, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 336000.0], [435000.0, 336000.0], [435000.0, 337000.0], [436000.0, 337000.0], [436000.0, 336000.0]]]}}, {"id": "1977", "type": "Feature", "properties": {"easting": 436500.0, "northing": 336500.0, "gridsq": "X436Y336", "numresp": 31, "numpeople": 72.54, "numkeys": 1, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 336000.0], [436000.0, 336000.0], [436000.0, 337000.0], [437000.0, 337000.0], [437000.0, 336000.0]]]}}, {"id": "1978", "type": "Feature", "properties": {"easting": 437500.0, "northing": 336500.0, "gridsq": "X437Y336", "numresp": 247, "numpeople": 577.98, "numkeys": 4, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[438000.0, 336000.0], [437000.0, 336000.0], [437000.0, 337000.0], [438000.0, 337000.0], [438000.0, 336000.0]]]}}, {"id": "1979", "type": "Feature", "properties": {"easting": 451500.0, "northing": 336500.0, "gridsq": "X451Y336", "numresp": 92, "numpeople": 215.28, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 336000.0], [451000.0, 336000.0], [451000.0, 337000.0], [452000.0, 337000.0], [452000.0, 336000.0]]]}}, {"id": "1980", "type": "Feature", "properties": {"easting": 434500.0, "northing": 337500.0, "gridsq": "X434Y337", "numresp": 51, "numpeople": 119.34, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 337000.0], [434000.0, 337000.0], [434000.0, 338000.0], [435000.0, 338000.0], [435000.0, 337000.0]]]}}, {"id": "1981", "type": "Feature", "properties": {"easting": 448500.0, "northing": 337500.0, "gridsq": "X448Y337", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 337000.0], [448000.0, 337000.0], [448000.0, 338000.0], [449000.0, 338000.0], [449000.0, 337000.0]]]}}, {"id": "1982", "type": "Feature", "properties": {"easting": 438500.0, "northing": 338500.0, "gridsq": "X438Y338", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 338000.0], [438000.0, 338000.0], [438000.0, 339000.0], [439000.0, 339000.0], [439000.0, 338000.0]]]}}, {"id": "1983", "type": "Feature", "properties": {"easting": 451500.0, "northing": 338500.0, "gridsq": "X451Y338", "numresp": 105, "numpeople": 245.7, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 338000.0], [451000.0, 338000.0], [451000.0, 339000.0], [452000.0, 339000.0], [452000.0, 338000.0]]]}}, {"id": "1984", "type": "Feature", "properties": {"easting": 454500.0, "northing": 339500.0, "gridsq": "X454Y339", "numresp": 52, "numpeople": 121.68, "numkeys": 5, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 339000.0], [454000.0, 339000.0], [454000.0, 340000.0], [455000.0, 340000.0], [455000.0, 339000.0]]]}}, {"id": "1985", "type": "Feature", "properties": {"easting": 457500.0, "northing": 339500.0, "gridsq": "X457Y339", "numresp": 2, "numpeople": 4.68, "numkeys": 10, "numnonresp": 140, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 339000.0], [457000.0, 339000.0], [457000.0, 340000.0], [458000.0, 340000.0], [458000.0, 339000.0]]]}}, {"id": "1986", "type": "Feature", "properties": {"easting": 458500.0, "northing": 339500.0, "gridsq": "X458Y339", "numresp": 211, "numpeople": 493.74, "numkeys": 3, "numnonresp": 88, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 339000.0], [458000.0, 339000.0], [458000.0, 340000.0], [459000.0, 340000.0], [459000.0, 339000.0]]]}}, {"id": "1987", "type": "Feature", "properties": {"easting": 459500.0, "northing": 339500.0, "gridsq": "X459Y339", "numresp": 118, "numpeople": 276.12, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 339000.0], [459000.0, 339000.0], [459000.0, 340000.0], [460000.0, 340000.0], [460000.0, 339000.0]]]}}, {"id": "1988", "type": "Feature", "properties": {"easting": 470500.0, "northing": 339500.0, "gridsq": "X470Y339", "numresp": 29, "numpeople": 67.86, "numkeys": 0, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[471000.0, 339000.0], [470000.0, 339000.0], [470000.0, 340000.0], [471000.0, 340000.0], [471000.0, 339000.0]]]}}, {"id": "1989", "type": "Feature", "properties": {"easting": 451500.0, "northing": 340500.0, "gridsq": "X451Y340", "numresp": 12, "numpeople": 28.08, "numkeys": 8, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 340000.0], [451000.0, 340000.0], [451000.0, 341000.0], [452000.0, 341000.0], [452000.0, 340000.0]]]}}, {"id": "1990", "type": "Feature", "properties": {"easting": 453500.0, "northing": 340500.0, "gridsq": "X453Y340", "numresp": 143, "numpeople": 334.62, "numkeys": 1, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[454000.0, 340000.0], [453000.0, 340000.0], [453000.0, 341000.0], [454000.0, 341000.0], [454000.0, 340000.0]]]}}, {"id": "1991", "type": "Feature", "properties": {"easting": 454500.0, "northing": 340500.0, "gridsq": "X454Y340", "numresp": 188, "numpeople": 439.92, "numkeys": 0, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 340000.0], [454000.0, 340000.0], [454000.0, 341000.0], [455000.0, 341000.0], [455000.0, 340000.0]]]}}, {"id": "1992", "type": "Feature", "properties": {"easting": 456500.0, "northing": 340500.0, "gridsq": "X456Y340", "numresp": 4, "numpeople": 9.36, "numkeys": 5, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 340000.0], [456000.0, 340000.0], [456000.0, 341000.0], [457000.0, 341000.0], [457000.0, 340000.0]]]}}, {"id": "1993", "type": "Feature", "properties": {"easting": 457500.0, "northing": 340500.0, "gridsq": "X457Y340", "numresp": 393, "numpeople": 919.62, "numkeys": 6, "numnonresp": 67, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 340000.0], [457000.0, 340000.0], [457000.0, 341000.0], [458000.0, 341000.0], [458000.0, 340000.0]]]}}, {"id": "1994", "type": "Feature", "properties": {"easting": 458500.0, "northing": 340500.0, "gridsq": "X458Y340", "numresp": 52, "numpeople": 121.68, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 340000.0], [458000.0, 340000.0], [458000.0, 341000.0], [459000.0, 341000.0], [459000.0, 340000.0]]]}}, {"id": "1995", "type": "Feature", "properties": {"easting": 462500.0, "northing": 340500.0, "gridsq": "X462Y340", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[463000.0, 340000.0], [462000.0, 340000.0], [462000.0, 341000.0], [463000.0, 341000.0], [463000.0, 340000.0]]]}}, {"id": "1996", "type": "Feature", "properties": {"easting": 470500.0, "northing": 340500.0, "gridsq": "X470Y340", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[471000.0, 340000.0], [470000.0, 340000.0], [470000.0, 341000.0], [471000.0, 341000.0], [471000.0, 340000.0]]]}}, {"id": "1997", "type": "Feature", "properties": {"easting": 354500.0, "northing": 341500.0, "gridsq": "X354Y341", "numresp": 29, "numpeople": 67.86, "numkeys": 2, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[355000.0, 341000.0], [354000.0, 341000.0], [354000.0, 342000.0], [355000.0, 342000.0], [355000.0, 341000.0]]]}}, {"id": "1998", "type": "Feature", "properties": {"easting": 436500.0, "northing": 341500.0, "gridsq": "X436Y341", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 341000.0], [436000.0, 341000.0], [436000.0, 342000.0], [437000.0, 342000.0], [437000.0, 341000.0]]]}}, {"id": "1999", "type": "Feature", "properties": {"easting": 453500.0, "northing": 341500.0, "gridsq": "X453Y341", "numresp": 10, "numpeople": 23.4, "numkeys": 4, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[454000.0, 341000.0], [453000.0, 341000.0], [453000.0, 342000.0], [454000.0, 342000.0], [454000.0, 341000.0]]]}}, {"id": "2000", "type": "Feature", "properties": {"easting": 455500.0, "northing": 341500.0, "gridsq": "X455Y341", "numresp": 24, "numpeople": 56.16, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[456000.0, 341000.0], [455000.0, 341000.0], [455000.0, 342000.0], [456000.0, 342000.0], [456000.0, 341000.0]]]}}, {"id": "2001", "type": "Feature", "properties": {"easting": 456500.0, "northing": 341500.0, "gridsq": "X456Y341", "numresp": 57, "numpeople": 133.38, "numkeys": 2, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 341000.0], [456000.0, 341000.0], [456000.0, 342000.0], [457000.0, 342000.0], [457000.0, 341000.0]]]}}, {"id": "2002", "type": "Feature", "properties": {"easting": 461500.0, "northing": 341500.0, "gridsq": "X461Y341", "numresp": 252, "numpeople": 589.68, "numkeys": 3, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 341000.0], [461000.0, 341000.0], [461000.0, 342000.0], [462000.0, 342000.0], [462000.0, 341000.0]]]}}, {"id": "2003", "type": "Feature", "properties": {"easting": 462500.0, "northing": 341500.0, "gridsq": "X462Y341", "numresp": 122, "numpeople": 285.48, "numkeys": 0, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[463000.0, 341000.0], [462000.0, 341000.0], [462000.0, 342000.0], [463000.0, 342000.0], [463000.0, 341000.0]]]}}, {"id": "2004", "type": "Feature", "properties": {"easting": 622500.0, "northing": 341500.0, "gridsq": "X622Y341", "numresp": 106, "numpeople": 248.04, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[623000.0, 341000.0], [622000.0, 341000.0], [622000.0, 342000.0], [623000.0, 342000.0], [623000.0, 341000.0]]]}}, {"id": "2005", "type": "Feature", "properties": {"easting": 446500.0, "northing": 342500.0, "gridsq": "X446Y342", "numresp": 40, "numpeople": 93.6, "numkeys": 4, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[447000.0, 342000.0], [446000.0, 342000.0], [446000.0, 343000.0], [447000.0, 343000.0], [447000.0, 342000.0]]]}}, {"id": "2006", "type": "Feature", "properties": {"easting": 447500.0, "northing": 342500.0, "gridsq": "X447Y342", "numresp": 18, "numpeople": 42.12, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 342000.0], [447000.0, 342000.0], [447000.0, 343000.0], [448000.0, 343000.0], [448000.0, 342000.0]]]}}, {"id": "2007", "type": "Feature", "properties": {"easting": 452500.0, "northing": 342500.0, "gridsq": "X452Y342", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[453000.0, 342000.0], [452000.0, 342000.0], [452000.0, 343000.0], [453000.0, 343000.0], [453000.0, 342000.0]]]}}, {"id": "2008", "type": "Feature", "properties": {"easting": 457500.0, "northing": 342500.0, "gridsq": "X457Y342", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 342000.0], [457000.0, 342000.0], [457000.0, 343000.0], [458000.0, 343000.0], [458000.0, 342000.0]]]}}, {"id": "2009", "type": "Feature", "properties": {"easting": 621500.0, "northing": 342500.0, "gridsq": "X621Y342", "numresp": 118, "numpeople": 276.12, "numkeys": 0, "numnonresp": 57, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[622000.0, 342000.0], [621000.0, 342000.0], [621000.0, 343000.0], [622000.0, 343000.0], [622000.0, 342000.0]]]}}, {"id": "2010", "type": "Feature", "properties": {"easting": 390500.0, "northing": 343500.0, "gridsq": "X390Y343", "numresp": 30, "numpeople": 70.2, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 343000.0], [390000.0, 343000.0], [390000.0, 344000.0], [391000.0, 344000.0], [391000.0, 343000.0]]]}}, {"id": "2011", "type": "Feature", "properties": {"easting": 391500.0, "northing": 343500.0, "gridsq": "X391Y343", "numresp": 23, "numpeople": 53.82, "numkeys": 1, "numnonresp": 41, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 343000.0], [391000.0, 343000.0], [391000.0, 344000.0], [392000.0, 344000.0], [392000.0, 343000.0]]]}}, {"id": "2012", "type": "Feature", "properties": {"easting": 464500.0, "northing": 343500.0, "gridsq": "X464Y343", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[465000.0, 343000.0], [464000.0, 343000.0], [464000.0, 344000.0], [465000.0, 344000.0], [465000.0, 343000.0]]]}}, {"id": "2013", "type": "Feature", "properties": {"easting": 454500.0, "northing": 344500.0, "gridsq": "X454Y344", "numresp": 34, "numpeople": 79.56, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 344000.0], [454000.0, 344000.0], [454000.0, 345000.0], [455000.0, 345000.0], [455000.0, 344000.0]]]}}, {"id": "2014", "type": "Feature", "properties": {"easting": 455500.0, "northing": 344500.0, "gridsq": "X455Y344", "numresp": 35, "numpeople": 81.9, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[456000.0, 344000.0], [455000.0, 344000.0], [455000.0, 345000.0], [456000.0, 345000.0], [456000.0, 344000.0]]]}}, {"id": "2015", "type": "Feature", "properties": {"easting": 456500.0, "northing": 344500.0, "gridsq": "X456Y344", "numresp": 26, "numpeople": 60.84, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 344000.0], [456000.0, 344000.0], [456000.0, 345000.0], [457000.0, 345000.0], [457000.0, 344000.0]]]}}, {"id": "2016", "type": "Feature", "properties": {"easting": 458500.0, "northing": 344500.0, "gridsq": "X458Y344", "numresp": 77, "numpeople": 180.18, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 344000.0], [458000.0, 344000.0], [458000.0, 345000.0], [459000.0, 345000.0], [459000.0, 344000.0]]]}}, {"id": "2017", "type": "Feature", "properties": {"easting": 387500.0, "northing": 345500.0, "gridsq": "X387Y345", "numresp": 10, "numpeople": 23.4, "numkeys": 1, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 345000.0], [387000.0, 345000.0], [387000.0, 346000.0], [388000.0, 346000.0], [388000.0, 345000.0]]]}}, {"id": "2018", "type": "Feature", "properties": {"easting": 453500.0, "northing": 345500.0, "gridsq": "X453Y345", "numresp": 268, "numpeople": 627.12, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[454000.0, 345000.0], [453000.0, 345000.0], [453000.0, 346000.0], [454000.0, 346000.0], [454000.0, 345000.0]]]}}, {"id": "2019", "type": "Feature", "properties": {"easting": 454500.0, "northing": 345500.0, "gridsq": "X454Y345", "numresp": 47, "numpeople": 109.98, "numkeys": 4, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 345000.0], [454000.0, 345000.0], [454000.0, 346000.0], [455000.0, 346000.0], [455000.0, 345000.0]]]}}, {"id": "2020", "type": "Feature", "properties": {"easting": 455500.0, "northing": 345500.0, "gridsq": "X455Y345", "numresp": 89, "numpeople": 208.26, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[456000.0, 345000.0], [455000.0, 345000.0], [455000.0, 346000.0], [456000.0, 346000.0], [456000.0, 345000.0]]]}}, {"id": "2021", "type": "Feature", "properties": {"easting": 456500.0, "northing": 345500.0, "gridsq": "X456Y345", "numresp": 26, "numpeople": 60.84, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 345000.0], [456000.0, 345000.0], [456000.0, 346000.0], [457000.0, 346000.0], [457000.0, 345000.0]]]}}, {"id": "2022", "type": "Feature", "properties": {"easting": 457500.0, "northing": 345500.0, "gridsq": "X457Y345", "numresp": 51, "numpeople": 119.34, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 345000.0], [457000.0, 345000.0], [457000.0, 346000.0], [458000.0, 346000.0], [458000.0, 345000.0]]]}}, {"id": "2023", "type": "Feature", "properties": {"easting": 458500.0, "northing": 345500.0, "gridsq": "X458Y345", "numresp": 65, "numpeople": 152.1, "numkeys": 2, "numnonresp": 124, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 345000.0], [458000.0, 345000.0], [458000.0, 346000.0], [459000.0, 346000.0], [459000.0, 345000.0]]]}}, {"id": "2024", "type": "Feature", "properties": {"easting": 506500.0, "northing": 345500.0, "gridsq": "X506Y345", "numresp": 31, "numpeople": 72.54, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 345000.0], [506000.0, 345000.0], [506000.0, 346000.0], [507000.0, 346000.0], [507000.0, 345000.0]]]}}, {"id": "2025", "type": "Feature", "properties": {"easting": 507500.0, "northing": 345500.0, "gridsq": "X507Y345", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 345000.0], [507000.0, 345000.0], [507000.0, 346000.0], [508000.0, 346000.0], [508000.0, 345000.0]]]}}, {"id": "2026", "type": "Feature", "properties": {"easting": 382500.0, "northing": 346500.0, "gridsq": "X382Y346", "numresp": 71, "numpeople": 166.14, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[383000.0, 346000.0], [382000.0, 346000.0], [382000.0, 347000.0], [383000.0, 347000.0], [383000.0, 346000.0]]]}}, {"id": "2027", "type": "Feature", "properties": {"easting": 418500.0, "northing": 346500.0, "gridsq": "X418Y346", "numresp": 117, "numpeople": 273.78, "numkeys": 1, "numnonresp": 43, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[419000.0, 346000.0], [418000.0, 346000.0], [418000.0, 347000.0], [419000.0, 347000.0], [419000.0, 346000.0]]]}}, {"id": "2028", "type": "Feature", "properties": {"easting": 454500.0, "northing": 348500.0, "gridsq": "X454Y348", "numresp": 107, "numpeople": 250.38, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 348000.0], [454000.0, 348000.0], [454000.0, 349000.0], [455000.0, 349000.0], [455000.0, 348000.0]]]}}, {"id": "2029", "type": "Feature", "properties": {"easting": 461500.0, "northing": 349500.0, "gridsq": "X461Y349", "numresp": 80, "numpeople": 187.2, "numkeys": 6, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 349000.0], [461000.0, 349000.0], [461000.0, 350000.0], [462000.0, 350000.0], [462000.0, 349000.0]]]}}, {"id": "2030", "type": "Feature", "properties": {"easting": 388500.0, "northing": 350500.0, "gridsq": "X388Y350", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 350000.0], [388000.0, 350000.0], [388000.0, 351000.0], [389000.0, 351000.0], [389000.0, 350000.0]]]}}, {"id": "2031", "type": "Feature", "properties": {"easting": 461500.0, "northing": 350500.0, "gridsq": "X461Y350", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 350000.0], [461000.0, 350000.0], [461000.0, 351000.0], [462000.0, 351000.0], [462000.0, 350000.0]]]}}, {"id": "2032", "type": "Feature", "properties": {"easting": 388500.0, "northing": 351500.0, "gridsq": "X388Y351", "numresp": 188, "numpeople": 439.92, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 351000.0], [388000.0, 351000.0], [388000.0, 352000.0], [389000.0, 352000.0], [389000.0, 351000.0]]]}}, {"id": "2033", "type": "Feature", "properties": {"easting": 440500.0, "northing": 352500.0, "gridsq": "X440Y352", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[441000.0, 352000.0], [440000.0, 352000.0], [440000.0, 353000.0], [441000.0, 353000.0], [441000.0, 352000.0]]]}}, {"id": "2034", "type": "Feature", "properties": {"easting": 382500.0, "northing": 353500.0, "gridsq": "X382Y353", "numresp": 97, "numpeople": 226.98, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[383000.0, 353000.0], [382000.0, 353000.0], [382000.0, 354000.0], [383000.0, 354000.0], [383000.0, 353000.0]]]}}, {"id": "2035", "type": "Feature", "properties": {"easting": 479500.0, "northing": 353500.0, "gridsq": "X479Y353", "numresp": 18, "numpeople": 42.12, "numkeys": 2, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[480000.0, 353000.0], [479000.0, 353000.0], [479000.0, 354000.0], [480000.0, 354000.0], [480000.0, 353000.0]]]}}, {"id": "2036", "type": "Feature", "properties": {"easting": 383500.0, "northing": 354500.0, "gridsq": "X383Y354", "numresp": 139, "numpeople": 325.26, "numkeys": 5, "numnonresp": 47, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 354000.0], [383000.0, 354000.0], [383000.0, 355000.0], [384000.0, 355000.0], [384000.0, 354000.0]]]}}, {"id": "2037", "type": "Feature", "properties": {"easting": 384500.0, "northing": 354500.0, "gridsq": "X384Y354", "numresp": 162, "numpeople": 379.08, "numkeys": 1, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 354000.0], [384000.0, 354000.0], [384000.0, 355000.0], [385000.0, 355000.0], [385000.0, 354000.0]]]}}, {"id": "2038", "type": "Feature", "properties": {"easting": 442500.0, "northing": 354500.0, "gridsq": "X442Y354", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 354000.0], [442000.0, 354000.0], [442000.0, 355000.0], [443000.0, 355000.0], [443000.0, 354000.0]]]}}, {"id": "2039", "type": "Feature", "properties": {"easting": 385500.0, "northing": 355500.0, "gridsq": "X385Y355", "numresp": 118, "numpeople": 276.12, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 355000.0], [385000.0, 355000.0], [385000.0, 356000.0], [386000.0, 356000.0], [386000.0, 355000.0]]]}}, {"id": "2040", "type": "Feature", "properties": {"easting": 397500.0, "northing": 355500.0, "gridsq": "X397Y355", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[398000.0, 355000.0], [397000.0, 355000.0], [397000.0, 356000.0], [398000.0, 356000.0], [398000.0, 355000.0]]]}}, {"id": "2041", "type": "Feature", "properties": {"easting": 450500.0, "northing": 355500.0, "gridsq": "X450Y355", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 355000.0], [450000.0, 355000.0], [450000.0, 356000.0], [451000.0, 356000.0], [451000.0, 355000.0]]]}}, {"id": "2042", "type": "Feature", "properties": {"easting": 429500.0, "northing": 356500.0, "gridsq": "X429Y356", "numresp": 43, "numpeople": 100.62, "numkeys": 2, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 356000.0], [429000.0, 356000.0], [429000.0, 357000.0], [430000.0, 357000.0], [430000.0, 356000.0]]]}}, {"id": "2043", "type": "Feature", "properties": {"easting": 450500.0, "northing": 356500.0, "gridsq": "X450Y356", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 356000.0], [450000.0, 356000.0], [450000.0, 357000.0], [451000.0, 357000.0], [451000.0, 356000.0]]]}}, {"id": "2044", "type": "Feature", "properties": {"easting": 428500.0, "northing": 357500.0, "gridsq": "X428Y357", "numresp": 3, "numpeople": 7.02, "numkeys": 0, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 357000.0], [428000.0, 357000.0], [428000.0, 358000.0], [429000.0, 358000.0], [429000.0, 357000.0]]]}}, {"id": "2045", "type": "Feature", "properties": {"easting": 348500.0, "northing": 358500.0, "gridsq": "X348Y358", "numresp": 33, "numpeople": 77.22, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[349000.0, 358000.0], [348000.0, 358000.0], [348000.0, 359000.0], [349000.0, 359000.0], [349000.0, 358000.0]]]}}, {"id": "2046", "type": "Feature", "properties": {"easting": 449500.0, "northing": 358500.0, "gridsq": "X449Y358", "numresp": 32, "numpeople": 74.88, "numkeys": 2, "numnonresp": 79, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[450000.0, 358000.0], [449000.0, 358000.0], [449000.0, 359000.0], [450000.0, 359000.0], [450000.0, 358000.0]]]}}, {"id": "2047", "type": "Feature", "properties": {"easting": 449500.0, "northing": 359500.0, "gridsq": "X449Y359", "numresp": 90, "numpeople": 210.6, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[450000.0, 359000.0], [449000.0, 359000.0], [449000.0, 360000.0], [450000.0, 360000.0], [450000.0, 359000.0]]]}}, {"id": "2048", "type": "Feature", "properties": {"easting": 456500.0, "northing": 360500.0, "gridsq": "X456Y360", "numresp": 60, "numpeople": 140.4, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 360000.0], [456000.0, 360000.0], [456000.0, 361000.0], [457000.0, 361000.0], [457000.0, 360000.0]]]}}, {"id": "2049", "type": "Feature", "properties": {"easting": 452500.0, "northing": 361500.0, "gridsq": "X452Y361", "numresp": 24, "numpeople": 56.16, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[453000.0, 361000.0], [452000.0, 361000.0], [452000.0, 362000.0], [453000.0, 362000.0], [453000.0, 361000.0]]]}}, {"id": "2050", "type": "Feature", "properties": {"easting": 453500.0, "northing": 361500.0, "gridsq": "X453Y361", "numresp": 81, "numpeople": 189.54, "numkeys": 10, "numnonresp": 125, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[454000.0, 361000.0], [453000.0, 361000.0], [453000.0, 362000.0], [454000.0, 362000.0], [454000.0, 361000.0]]]}}, {"id": "2051", "type": "Feature", "properties": {"easting": 454500.0, "northing": 361500.0, "gridsq": "X454Y361", "numresp": 49, "numpeople": 114.66, "numkeys": 1, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 361000.0], [454000.0, 361000.0], [454000.0, 362000.0], [455000.0, 362000.0], [455000.0, 361000.0]]]}}, {"id": "2052", "type": "Feature", "properties": {"easting": 483500.0, "northing": 361500.0, "gridsq": "X483Y361", "numresp": 140, "numpeople": 327.6, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[484000.0, 361000.0], [483000.0, 361000.0], [483000.0, 362000.0], [484000.0, 362000.0], [484000.0, 361000.0]]]}}, {"id": "2053", "type": "Feature", "properties": {"easting": 384500.0, "northing": 362500.0, "gridsq": "X384Y362", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 362000.0], [384000.0, 362000.0], [384000.0, 363000.0], [385000.0, 363000.0], [385000.0, 362000.0]]]}}, {"id": "2054", "type": "Feature", "properties": {"easting": 385500.0, "northing": 362500.0, "gridsq": "X385Y362", "numresp": 2, "numpeople": 4.68, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 362000.0], [385000.0, 362000.0], [385000.0, 363000.0], [386000.0, 363000.0], [386000.0, 362000.0]]]}}, {"id": "2055", "type": "Feature", "properties": {"easting": 454500.0, "northing": 362500.0, "gridsq": "X454Y362", "numresp": 13, "numpeople": 30.42, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 362000.0], [454000.0, 362000.0], [454000.0, 363000.0], [455000.0, 363000.0], [455000.0, 362000.0]]]}}, {"id": "2056", "type": "Feature", "properties": {"easting": 386500.0, "northing": 363500.0, "gridsq": "X386Y363", "numresp": 67, "numpeople": 156.78, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 363000.0], [386000.0, 363000.0], [386000.0, 364000.0], [387000.0, 364000.0], [387000.0, 363000.0]]]}}, {"id": "2057", "type": "Feature", "properties": {"easting": 426500.0, "northing": 363500.0, "gridsq": "X426Y363", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[427000.0, 363000.0], [426000.0, 363000.0], [426000.0, 364000.0], [427000.0, 364000.0], [427000.0, 363000.0]]]}}, {"id": "2058", "type": "Feature", "properties": {"easting": 451500.0, "northing": 363500.0, "gridsq": "X451Y363", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 363000.0], [451000.0, 363000.0], [451000.0, 364000.0], [452000.0, 364000.0], [452000.0, 363000.0]]]}}, {"id": "2059", "type": "Feature", "properties": {"easting": 454500.0, "northing": 363500.0, "gridsq": "X454Y363", "numresp": 110, "numpeople": 257.4, "numkeys": 0, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[455000.0, 363000.0], [454000.0, 363000.0], [454000.0, 364000.0], [455000.0, 364000.0], [455000.0, 363000.0]]]}}, {"id": "2060", "type": "Feature", "properties": {"easting": 340500.0, "northing": 365500.0, "gridsq": "X340Y365", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[341000.0, 365000.0], [340000.0, 365000.0], [340000.0, 366000.0], [341000.0, 366000.0], [341000.0, 365000.0]]]}}, {"id": "2061", "type": "Feature", "properties": {"easting": 362500.0, "northing": 365500.0, "gridsq": "X362Y365", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[363000.0, 365000.0], [362000.0, 365000.0], [362000.0, 366000.0], [363000.0, 366000.0], [363000.0, 365000.0]]]}}, {"id": "2062", "type": "Feature", "properties": {"easting": 496500.0, "northing": 365500.0, "gridsq": "X496Y365", "numresp": 51, "numpeople": 119.34, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 365000.0], [496000.0, 365000.0], [496000.0, 366000.0], [497000.0, 366000.0], [497000.0, 365000.0]]]}}, {"id": "2063", "type": "Feature", "properties": {"easting": 364500.0, "northing": 366500.0, "gridsq": "X364Y366", "numresp": 37, "numpeople": 86.58, "numkeys": 3, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[365000.0, 366000.0], [364000.0, 366000.0], [364000.0, 367000.0], [365000.0, 367000.0], [365000.0, 366000.0]]]}}, {"id": "2064", "type": "Feature", "properties": {"easting": 452500.0, "northing": 367500.0, "gridsq": "X452Y367", "numresp": 82, "numpeople": 191.88, "numkeys": 5, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[453000.0, 367000.0], [452000.0, 367000.0], [452000.0, 368000.0], [453000.0, 368000.0], [453000.0, 367000.0]]]}}, {"id": "2065", "type": "Feature", "properties": {"easting": 456500.0, "northing": 367500.0, "gridsq": "X456Y367", "numresp": 41, "numpeople": 95.94, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[457000.0, 367000.0], [456000.0, 367000.0], [456000.0, 368000.0], [457000.0, 368000.0], [457000.0, 367000.0]]]}}, {"id": "2066", "type": "Feature", "properties": {"easting": 467500.0, "northing": 368500.0, "gridsq": "X467Y368", "numresp": 42, "numpeople": 98.28, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[468000.0, 368000.0], [467000.0, 368000.0], [467000.0, 369000.0], [468000.0, 369000.0], [468000.0, 368000.0]]]}}, {"id": "2067", "type": "Feature", "properties": {"easting": 496500.0, "northing": 368500.0, "gridsq": "X496Y368", "numresp": 114, "numpeople": 266.76, "numkeys": 1, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[497000.0, 368000.0], [496000.0, 368000.0], [496000.0, 369000.0], [497000.0, 369000.0], [497000.0, 368000.0]]]}}, {"id": "2068", "type": "Feature", "properties": {"easting": 525500.0, "northing": 369500.0, "gridsq": "X525Y369", "numresp": 48, "numpeople": 112.32, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 369000.0], [525000.0, 369000.0], [525000.0, 370000.0], [526000.0, 370000.0], [526000.0, 369000.0]]]}}, {"id": "2069", "type": "Feature", "properties": {"easting": 436500.0, "northing": 370500.0, "gridsq": "X436Y370", "numresp": 107, "numpeople": 250.38, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 370000.0], [436000.0, 370000.0], [436000.0, 371000.0], [437000.0, 371000.0], [437000.0, 370000.0]]]}}, {"id": "2070", "type": "Feature", "properties": {"easting": 438500.0, "northing": 370500.0, "gridsq": "X438Y370", "numresp": 92, "numpeople": 215.28, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 370000.0], [438000.0, 370000.0], [438000.0, 371000.0], [439000.0, 371000.0], [439000.0, 370000.0]]]}}, {"id": "2071", "type": "Feature", "properties": {"easting": 447500.0, "northing": 370500.0, "gridsq": "X447Y370", "numresp": 29, "numpeople": 67.86, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[448000.0, 370000.0], [447000.0, 370000.0], [447000.0, 371000.0], [448000.0, 371000.0], [448000.0, 370000.0]]]}}, {"id": "2072", "type": "Feature", "properties": {"easting": 365500.0, "northing": 371500.0, "gridsq": "X365Y371", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[366000.0, 371000.0], [365000.0, 371000.0], [365000.0, 372000.0], [366000.0, 372000.0], [366000.0, 371000.0]]]}}, {"id": "2073", "type": "Feature", "properties": {"easting": 437500.0, "northing": 371500.0, "gridsq": "X437Y371", "numresp": 112, "numpeople": 262.08, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[438000.0, 371000.0], [437000.0, 371000.0], [437000.0, 372000.0], [438000.0, 372000.0], [438000.0, 371000.0]]]}}, {"id": "2074", "type": "Feature", "properties": {"easting": 438500.0, "northing": 371500.0, "gridsq": "X438Y371", "numresp": 84, "numpeople": 196.56, "numkeys": 1, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 371000.0], [438000.0, 371000.0], [438000.0, 372000.0], [439000.0, 372000.0], [439000.0, 371000.0]]]}}, {"id": "2075", "type": "Feature", "properties": {"easting": 473500.0, "northing": 371500.0, "gridsq": "X473Y371", "numresp": 34, "numpeople": 79.56, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[474000.0, 371000.0], [473000.0, 371000.0], [473000.0, 372000.0], [474000.0, 372000.0], [474000.0, 371000.0]]]}}, {"id": "2076", "type": "Feature", "properties": {"easting": 497500.0, "northing": 371500.0, "gridsq": "X497Y371", "numresp": 43, "numpeople": 100.62, "numkeys": 3, "numnonresp": 86, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[498000.0, 371000.0], [497000.0, 371000.0], [497000.0, 372000.0], [498000.0, 372000.0], [498000.0, 371000.0]]]}}, {"id": "2077", "type": "Feature", "properties": {"easting": 498500.0, "northing": 371500.0, "gridsq": "X498Y371", "numresp": 217, "numpeople": 507.78, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 371000.0], [498000.0, 371000.0], [498000.0, 372000.0], [499000.0, 372000.0], [499000.0, 371000.0]]]}}, {"id": "2078", "type": "Feature", "properties": {"easting": 366500.0, "northing": 372500.0, "gridsq": "X366Y372", "numresp": 24, "numpeople": 56.16, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 372000.0], [366000.0, 372000.0], [366000.0, 373000.0], [367000.0, 373000.0], [367000.0, 372000.0]]]}}, {"id": "2079", "type": "Feature", "properties": {"easting": 390500.0, "northing": 372500.0, "gridsq": "X390Y372", "numresp": 41, "numpeople": 95.94, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 372000.0], [390000.0, 372000.0], [390000.0, 373000.0], [391000.0, 373000.0], [391000.0, 372000.0]]]}}, {"id": "2080", "type": "Feature", "properties": {"easting": 392500.0, "northing": 372500.0, "gridsq": "X392Y372", "numresp": 22, "numpeople": 51.48, "numkeys": 1, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 372000.0], [392000.0, 372000.0], [392000.0, 373000.0], [393000.0, 373000.0], [393000.0, 372000.0]]]}}, {"id": "2081", "type": "Feature", "properties": {"easting": 436500.0, "northing": 372500.0, "gridsq": "X436Y372", "numresp": 97, "numpeople": 226.98, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 372000.0], [436000.0, 372000.0], [436000.0, 373000.0], [437000.0, 373000.0], [437000.0, 372000.0]]]}}, {"id": "2082", "type": "Feature", "properties": {"easting": 444500.0, "northing": 372500.0, "gridsq": "X444Y372", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[445000.0, 372000.0], [444000.0, 372000.0], [444000.0, 373000.0], [445000.0, 373000.0], [445000.0, 372000.0]]]}}, {"id": "2083", "type": "Feature", "properties": {"easting": 391500.0, "northing": 373500.0, "gridsq": "X391Y373", "numresp": 75, "numpeople": 175.5, "numkeys": 5, "numnonresp": 103, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 373000.0], [391000.0, 373000.0], [391000.0, 374000.0], [392000.0, 374000.0], [392000.0, 373000.0]]]}}, {"id": "2084", "type": "Feature", "properties": {"easting": 405500.0, "northing": 373500.0, "gridsq": "X405Y373", "numresp": 23, "numpeople": 53.82, "numkeys": 0, "numnonresp": 74, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[406000.0, 373000.0], [405000.0, 373000.0], [405000.0, 374000.0], [406000.0, 374000.0], [406000.0, 373000.0]]]}}, {"id": "2085", "type": "Feature", "properties": {"easting": 406500.0, "northing": 373500.0, "gridsq": "X406Y373", "numresp": 94, "numpeople": 219.96, "numkeys": 2, "numnonresp": 49, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 373000.0], [406000.0, 373000.0], [406000.0, 374000.0], [407000.0, 374000.0], [407000.0, 373000.0]]]}}, {"id": "2086", "type": "Feature", "properties": {"easting": 438500.0, "northing": 373500.0, "gridsq": "X438Y373", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 373000.0], [438000.0, 373000.0], [438000.0, 374000.0], [439000.0, 374000.0], [439000.0, 373000.0]]]}}, {"id": "2087", "type": "Feature", "properties": {"easting": 442500.0, "northing": 373500.0, "gridsq": "X442Y373", "numresp": 23, "numpeople": 53.82, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 373000.0], [442000.0, 373000.0], [442000.0, 374000.0], [443000.0, 374000.0], [443000.0, 373000.0]]]}}, {"id": "2088", "type": "Feature", "properties": {"easting": 497500.0, "northing": 373500.0, "gridsq": "X497Y373", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[498000.0, 373000.0], [497000.0, 373000.0], [497000.0, 374000.0], [498000.0, 374000.0], [498000.0, 373000.0]]]}}, {"id": "2089", "type": "Feature", "properties": {"easting": 498500.0, "northing": 373500.0, "gridsq": "X498Y373", "numresp": 94, "numpeople": 219.96, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[499000.0, 373000.0], [498000.0, 373000.0], [498000.0, 374000.0], [499000.0, 374000.0], [499000.0, 373000.0]]]}}, {"id": "2090", "type": "Feature", "properties": {"easting": 341500.0, "northing": 374500.0, "gridsq": "X341Y374", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[342000.0, 374000.0], [341000.0, 374000.0], [341000.0, 375000.0], [342000.0, 375000.0], [342000.0, 374000.0]]]}}, {"id": "2091", "type": "Feature", "properties": {"easting": 391500.0, "northing": 374500.0, "gridsq": "X391Y374", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 374000.0], [391000.0, 374000.0], [391000.0, 375000.0], [392000.0, 375000.0], [392000.0, 374000.0]]]}}, {"id": "2092", "type": "Feature", "properties": {"easting": 392500.0, "northing": 374500.0, "gridsq": "X392Y374", "numresp": 124, "numpeople": 290.16, "numkeys": 0, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 374000.0], [392000.0, 374000.0], [392000.0, 375000.0], [393000.0, 375000.0], [393000.0, 374000.0]]]}}, {"id": "2093", "type": "Feature", "properties": {"easting": 437500.0, "northing": 374500.0, "gridsq": "X437Y374", "numresp": 10, "numpeople": 23.4, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[438000.0, 374000.0], [437000.0, 374000.0], [437000.0, 375000.0], [438000.0, 375000.0], [438000.0, 374000.0]]]}}, {"id": "2094", "type": "Feature", "properties": {"easting": 340500.0, "northing": 375500.0, "gridsq": "X340Y375", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[341000.0, 375000.0], [340000.0, 375000.0], [340000.0, 376000.0], [341000.0, 376000.0], [341000.0, 375000.0]]]}}, {"id": "2095", "type": "Feature", "properties": {"easting": 351500.0, "northing": 377500.0, "gridsq": "X351Y377", "numresp": 39, "numpeople": 91.26, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[352000.0, 377000.0], [351000.0, 377000.0], [351000.0, 378000.0], [352000.0, 378000.0], [352000.0, 377000.0]]]}}, {"id": "2096", "type": "Feature", "properties": {"easting": 393500.0, "northing": 377500.0, "gridsq": "X393Y377", "numresp": 112, "numpeople": 262.08, "numkeys": 0, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 377000.0], [393000.0, 377000.0], [393000.0, 378000.0], [394000.0, 378000.0], [394000.0, 377000.0]]]}}, {"id": "2097", "type": "Feature", "properties": {"easting": 352500.0, "northing": 378500.0, "gridsq": "X352Y378", "numresp": 66, "numpeople": 154.44, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[353000.0, 378000.0], [352000.0, 378000.0], [352000.0, 379000.0], [353000.0, 379000.0], [353000.0, 378000.0]]]}}, {"id": "2098", "type": "Feature", "properties": {"easting": 375500.0, "northing": 378500.0, "gridsq": "X375Y378", "numresp": 24, "numpeople": 56.16, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[376000.0, 378000.0], [375000.0, 378000.0], [375000.0, 379000.0], [376000.0, 379000.0], [376000.0, 378000.0]]]}}, {"id": "2099", "type": "Feature", "properties": {"easting": 433500.0, "northing": 378500.0, "gridsq": "X433Y378", "numresp": 61, "numpeople": 142.74, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 378000.0], [433000.0, 378000.0], [433000.0, 379000.0], [434000.0, 379000.0], [434000.0, 378000.0]]]}}, {"id": "2100", "type": "Feature", "properties": {"easting": 435500.0, "northing": 378500.0, "gridsq": "X435Y378", "numresp": 60, "numpeople": 140.4, "numkeys": 1, "numnonresp": 66, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 378000.0], [435000.0, 378000.0], [435000.0, 379000.0], [436000.0, 379000.0], [436000.0, 378000.0]]]}}, {"id": "2101", "type": "Feature", "properties": {"easting": 436500.0, "northing": 378500.0, "gridsq": "X436Y378", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 378000.0], [436000.0, 378000.0], [436000.0, 379000.0], [437000.0, 379000.0], [437000.0, 378000.0]]]}}, {"id": "2102", "type": "Feature", "properties": {"easting": 458500.0, "northing": 378500.0, "gridsq": "X458Y378", "numresp": 66, "numpeople": 154.44, "numkeys": 0, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 378000.0], [458000.0, 378000.0], [458000.0, 379000.0], [459000.0, 379000.0], [459000.0, 378000.0]]]}}, {"id": "2103", "type": "Feature", "properties": {"easting": 459500.0, "northing": 378500.0, "gridsq": "X459Y378", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 378000.0], [459000.0, 378000.0], [459000.0, 379000.0], [460000.0, 379000.0], [460000.0, 378000.0]]]}}, {"id": "2104", "type": "Feature", "properties": {"easting": 458500.0, "northing": 379500.0, "gridsq": "X458Y379", "numresp": 154, "numpeople": 360.36, "numkeys": 1, "numnonresp": 70, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 379000.0], [458000.0, 379000.0], [458000.0, 380000.0], [459000.0, 380000.0], [459000.0, 379000.0]]]}}, {"id": "2105", "type": "Feature", "properties": {"easting": 353500.0, "northing": 381500.0, "gridsq": "X353Y381", "numresp": 6, "numpeople": 14.04, "numkeys": 1, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[354000.0, 381000.0], [353000.0, 381000.0], [353000.0, 382000.0], [354000.0, 382000.0], [354000.0, 381000.0]]]}}, {"id": "2106", "type": "Feature", "properties": {"easting": 458500.0, "northing": 381500.0, "gridsq": "X458Y381", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[459000.0, 381000.0], [458000.0, 381000.0], [458000.0, 382000.0], [459000.0, 382000.0], [459000.0, 381000.0]]]}}, {"id": "2107", "type": "Feature", "properties": {"easting": 331500.0, "northing": 382500.0, "gridsq": "X331Y382", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 382000.0], [331000.0, 382000.0], [331000.0, 383000.0], [332000.0, 383000.0], [332000.0, 382000.0]]]}}, {"id": "2108", "type": "Feature", "properties": {"easting": 392500.0, "northing": 383500.0, "gridsq": "X392Y383", "numresp": 124, "numpeople": 290.16, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 383000.0], [392000.0, 383000.0], [392000.0, 384000.0], [393000.0, 384000.0], [393000.0, 383000.0]]]}}, {"id": "2109", "type": "Feature", "properties": {"easting": 400500.0, "northing": 383500.0, "gridsq": "X400Y383", "numresp": 5, "numpeople": 11.7, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 383000.0], [400000.0, 383000.0], [400000.0, 384000.0], [401000.0, 384000.0], [401000.0, 383000.0]]]}}, {"id": "2110", "type": "Feature", "properties": {"easting": 434500.0, "northing": 383500.0, "gridsq": "X434Y383", "numresp": 159, "numpeople": 372.06, "numkeys": 1, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 383000.0], [434000.0, 383000.0], [434000.0, 384000.0], [435000.0, 384000.0], [435000.0, 383000.0]]]}}, {"id": "2111", "type": "Feature", "properties": {"easting": 334500.0, "northing": 384500.0, "gridsq": "X334Y384", "numresp": 29, "numpeople": 67.86, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 384000.0], [334000.0, 384000.0], [334000.0, 385000.0], [335000.0, 385000.0], [335000.0, 384000.0]]]}}, {"id": "2112", "type": "Feature", "properties": {"easting": 389500.0, "northing": 384500.0, "gridsq": "X389Y384", "numresp": 15, "numpeople": 35.1, "numkeys": 0, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 384000.0], [389000.0, 384000.0], [389000.0, 385000.0], [390000.0, 385000.0], [390000.0, 384000.0]]]}}, {"id": "2113", "type": "Feature", "properties": {"easting": 397500.0, "northing": 384500.0, "gridsq": "X397Y384", "numresp": 30, "numpeople": 70.2, "numkeys": 2, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[398000.0, 384000.0], [397000.0, 384000.0], [397000.0, 385000.0], [398000.0, 385000.0], [398000.0, 384000.0]]]}}, {"id": "2114", "type": "Feature", "properties": {"easting": 434500.0, "northing": 384500.0, "gridsq": "X434Y384", "numresp": 107, "numpeople": 250.38, "numkeys": 3, "numnonresp": 54, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 384000.0], [434000.0, 384000.0], [434000.0, 385000.0], [435000.0, 385000.0], [435000.0, 384000.0]]]}}, {"id": "2115", "type": "Feature", "properties": {"easting": 332500.0, "northing": 385500.0, "gridsq": "X332Y385", "numresp": 136, "numpeople": 318.24, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 385000.0], [332000.0, 385000.0], [332000.0, 386000.0], [333000.0, 386000.0], [333000.0, 385000.0]]]}}, {"id": "2116", "type": "Feature", "properties": {"easting": 333500.0, "northing": 385500.0, "gridsq": "X333Y385", "numresp": 30, "numpeople": 70.2, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 385000.0], [333000.0, 385000.0], [333000.0, 386000.0], [334000.0, 386000.0], [334000.0, 385000.0]]]}}, {"id": "2117", "type": "Feature", "properties": {"easting": 340500.0, "northing": 385500.0, "gridsq": "X340Y385", "numresp": 18, "numpeople": 42.12, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[341000.0, 385000.0], [340000.0, 385000.0], [340000.0, 386000.0], [341000.0, 386000.0], [341000.0, 385000.0]]]}}, {"id": "2118", "type": "Feature", "properties": {"easting": 350500.0, "northing": 385500.0, "gridsq": "X350Y385", "numresp": 18, "numpeople": 42.12, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[351000.0, 385000.0], [350000.0, 385000.0], [350000.0, 386000.0], [351000.0, 386000.0], [351000.0, 385000.0]]]}}, {"id": "2119", "type": "Feature", "properties": {"easting": 351500.0, "northing": 385500.0, "gridsq": "X351Y385", "numresp": 49, "numpeople": 114.66, "numkeys": 4, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[352000.0, 385000.0], [351000.0, 385000.0], [351000.0, 386000.0], [352000.0, 386000.0], [352000.0, 385000.0]]]}}, {"id": "2120", "type": "Feature", "properties": {"easting": 430500.0, "northing": 385500.0, "gridsq": "X430Y385", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 385000.0], [430000.0, 385000.0], [430000.0, 386000.0], [431000.0, 386000.0], [431000.0, 385000.0]]]}}, {"id": "2121", "type": "Feature", "properties": {"easting": 431500.0, "northing": 385500.0, "gridsq": "X431Y385", "numresp": 85, "numpeople": 198.9, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 385000.0], [431000.0, 385000.0], [431000.0, 386000.0], [432000.0, 386000.0], [432000.0, 385000.0]]]}}, {"id": "2122", "type": "Feature", "properties": {"easting": 432500.0, "northing": 385500.0, "gridsq": "X432Y385", "numresp": 23, "numpeople": 53.82, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 385000.0], [432000.0, 385000.0], [432000.0, 386000.0], [433000.0, 386000.0], [433000.0, 385000.0]]]}}, {"id": "2123", "type": "Feature", "properties": {"easting": 433500.0, "northing": 385500.0, "gridsq": "X433Y385", "numresp": 116, "numpeople": 271.44, "numkeys": 2, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 385000.0], [433000.0, 385000.0], [433000.0, 386000.0], [434000.0, 386000.0], [434000.0, 385000.0]]]}}, {"id": "2124", "type": "Feature", "properties": {"easting": 453500.0, "northing": 385500.0, "gridsq": "X453Y385", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[454000.0, 385000.0], [453000.0, 385000.0], [453000.0, 386000.0], [454000.0, 386000.0], [454000.0, 385000.0]]]}}, {"id": "2125", "type": "Feature", "properties": {"easting": 332500.0, "northing": 386500.0, "gridsq": "X332Y386", "numresp": 62, "numpeople": 145.08, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 386000.0], [332000.0, 386000.0], [332000.0, 387000.0], [333000.0, 387000.0], [333000.0, 386000.0]]]}}, {"id": "2126", "type": "Feature", "properties": {"easting": 351500.0, "northing": 386500.0, "gridsq": "X351Y386", "numresp": 21, "numpeople": 49.14, "numkeys": 3, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[352000.0, 386000.0], [351000.0, 386000.0], [351000.0, 387000.0], [352000.0, 387000.0], [352000.0, 386000.0]]]}}, {"id": "2127", "type": "Feature", "properties": {"easting": 360500.0, "northing": 386500.0, "gridsq": "X360Y386", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[361000.0, 386000.0], [360000.0, 386000.0], [360000.0, 387000.0], [361000.0, 387000.0], [361000.0, 386000.0]]]}}, {"id": "2128", "type": "Feature", "properties": {"easting": 432500.0, "northing": 386500.0, "gridsq": "X432Y386", "numresp": 171, "numpeople": 400.14, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 386000.0], [432000.0, 386000.0], [432000.0, 387000.0], [433000.0, 387000.0], [433000.0, 386000.0]]]}}, {"id": "2129", "type": "Feature", "properties": {"easting": 434500.0, "northing": 386500.0, "gridsq": "X434Y386", "numresp": 304, "numpeople": 711.36, "numkeys": 8, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 386000.0], [434000.0, 386000.0], [434000.0, 387000.0], [435000.0, 387000.0], [435000.0, 386000.0]]]}}, {"id": "2130", "type": "Feature", "properties": {"easting": 435500.0, "northing": 386500.0, "gridsq": "X435Y386", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 386000.0], [435000.0, 386000.0], [435000.0, 387000.0], [436000.0, 387000.0], [436000.0, 386000.0]]]}}, {"id": "2131", "type": "Feature", "properties": {"easting": 451500.0, "northing": 386500.0, "gridsq": "X451Y386", "numresp": 40, "numpeople": 93.6, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 386000.0], [451000.0, 386000.0], [451000.0, 387000.0], [452000.0, 387000.0], [452000.0, 386000.0]]]}}, {"id": "2132", "type": "Feature", "properties": {"easting": 452500.0, "northing": 386500.0, "gridsq": "X452Y386", "numresp": 107, "numpeople": 250.38, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[453000.0, 386000.0], [452000.0, 386000.0], [452000.0, 387000.0], [453000.0, 387000.0], [453000.0, 386000.0]]]}}, {"id": "2133", "type": "Feature", "properties": {"easting": 332500.0, "northing": 387500.0, "gridsq": "X332Y387", "numresp": 116, "numpeople": 271.44, "numkeys": 4, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 387000.0], [332000.0, 387000.0], [332000.0, 388000.0], [333000.0, 388000.0], [333000.0, 387000.0]]]}}, {"id": "2134", "type": "Feature", "properties": {"easting": 335500.0, "northing": 387500.0, "gridsq": "X335Y387", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 387000.0], [335000.0, 387000.0], [335000.0, 388000.0], [336000.0, 388000.0], [336000.0, 387000.0]]]}}, {"id": "2135", "type": "Feature", "properties": {"easting": 360500.0, "northing": 387500.0, "gridsq": "X360Y387", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[361000.0, 387000.0], [360000.0, 387000.0], [360000.0, 388000.0], [361000.0, 388000.0], [361000.0, 387000.0]]]}}, {"id": "2136", "type": "Feature", "properties": {"easting": 377500.0, "northing": 387500.0, "gridsq": "X377Y387", "numresp": 91, "numpeople": 212.94, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 387000.0], [377000.0, 387000.0], [377000.0, 388000.0], [378000.0, 388000.0], [378000.0, 387000.0]]]}}, {"id": "2137", "type": "Feature", "properties": {"easting": 381500.0, "northing": 387500.0, "gridsq": "X381Y387", "numresp": 100, "numpeople": 234.0, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[382000.0, 387000.0], [381000.0, 387000.0], [381000.0, 388000.0], [382000.0, 388000.0], [382000.0, 387000.0]]]}}, {"id": "2138", "type": "Feature", "properties": {"easting": 435500.0, "northing": 387500.0, "gridsq": "X435Y387", "numresp": 0, "numpeople": 0.0, "numkeys": 6, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 387000.0], [435000.0, 387000.0], [435000.0, 388000.0], [436000.0, 388000.0], [436000.0, 387000.0]]]}}, {"id": "2139", "type": "Feature", "properties": {"easting": 436500.0, "northing": 387500.0, "gridsq": "X436Y387", "numresp": 103, "numpeople": 241.02, "numkeys": 0, "numnonresp": 44, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 387000.0], [436000.0, 387000.0], [436000.0, 388000.0], [437000.0, 388000.0], [437000.0, 387000.0]]]}}, {"id": "2140", "type": "Feature", "properties": {"easting": 438500.0, "northing": 387500.0, "gridsq": "X438Y387", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 387000.0], [438000.0, 387000.0], [438000.0, 388000.0], [439000.0, 388000.0], [439000.0, 387000.0]]]}}, {"id": "2141", "type": "Feature", "properties": {"easting": 532500.0, "northing": 387500.0, "gridsq": "X532Y387", "numresp": 84, "numpeople": 196.56, "numkeys": 3, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[533000.0, 387000.0], [532000.0, 387000.0], [532000.0, 388000.0], [533000.0, 388000.0], [533000.0, 387000.0]]]}}, {"id": "2142", "type": "Feature", "properties": {"easting": 533500.0, "northing": 387500.0, "gridsq": "X533Y387", "numresp": 133, "numpeople": 311.22, "numkeys": 3, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 387000.0], [533000.0, 387000.0], [533000.0, 388000.0], [534000.0, 388000.0], [534000.0, 387000.0]]]}}, {"id": "2143", "type": "Feature", "properties": {"easting": 330500.0, "northing": 388500.0, "gridsq": "X330Y388", "numresp": 154, "numpeople": 360.36, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 388000.0], [330000.0, 388000.0], [330000.0, 389000.0], [331000.0, 389000.0], [331000.0, 388000.0]]]}}, {"id": "2144", "type": "Feature", "properties": {"easting": 332500.0, "northing": 388500.0, "gridsq": "X332Y388", "numresp": 97, "numpeople": 226.98, "numkeys": 6, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 388000.0], [332000.0, 388000.0], [332000.0, 389000.0], [333000.0, 389000.0], [333000.0, 388000.0]]]}}, {"id": "2145", "type": "Feature", "properties": {"easting": 342500.0, "northing": 388500.0, "gridsq": "X342Y388", "numresp": 76, "numpeople": 177.84, "numkeys": 3, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[343000.0, 388000.0], [342000.0, 388000.0], [342000.0, 389000.0], [343000.0, 389000.0], [343000.0, 388000.0]]]}}, {"id": "2146", "type": "Feature", "properties": {"easting": 356500.0, "northing": 388500.0, "gridsq": "X356Y388", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[357000.0, 388000.0], [356000.0, 388000.0], [356000.0, 389000.0], [357000.0, 389000.0], [357000.0, 388000.0]]]}}, {"id": "2147", "type": "Feature", "properties": {"easting": 361500.0, "northing": 388500.0, "gridsq": "X361Y388", "numresp": 23, "numpeople": 53.82, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[362000.0, 388000.0], [361000.0, 388000.0], [361000.0, 389000.0], [362000.0, 389000.0], [362000.0, 388000.0]]]}}, {"id": "2148", "type": "Feature", "properties": {"easting": 375500.0, "northing": 388500.0, "gridsq": "X375Y388", "numresp": 8, "numpeople": 18.72, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[376000.0, 388000.0], [375000.0, 388000.0], [375000.0, 389000.0], [376000.0, 389000.0], [376000.0, 388000.0]]]}}, {"id": "2149", "type": "Feature", "properties": {"easting": 377500.0, "northing": 388500.0, "gridsq": "X377Y388", "numresp": 63, "numpeople": 147.42, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 388000.0], [377000.0, 388000.0], [377000.0, 389000.0], [378000.0, 389000.0], [378000.0, 388000.0]]]}}, {"id": "2150", "type": "Feature", "properties": {"easting": 380500.0, "northing": 388500.0, "gridsq": "X380Y388", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[381000.0, 388000.0], [380000.0, 388000.0], [380000.0, 389000.0], [381000.0, 389000.0], [381000.0, 388000.0]]]}}, {"id": "2151", "type": "Feature", "properties": {"easting": 386500.0, "northing": 388500.0, "gridsq": "X386Y388", "numresp": 43, "numpeople": 100.62, "numkeys": 3, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 388000.0], [386000.0, 388000.0], [386000.0, 389000.0], [387000.0, 389000.0], [387000.0, 388000.0]]]}}, {"id": "2152", "type": "Feature", "properties": {"easting": 392500.0, "northing": 388500.0, "gridsq": "X392Y388", "numresp": 97, "numpeople": 226.98, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 388000.0], [392000.0, 388000.0], [392000.0, 389000.0], [393000.0, 389000.0], [393000.0, 388000.0]]]}}, {"id": "2153", "type": "Feature", "properties": {"easting": 434500.0, "northing": 388500.0, "gridsq": "X434Y388", "numresp": 33, "numpeople": 77.22, "numkeys": 3, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 388000.0], [434000.0, 388000.0], [434000.0, 389000.0], [435000.0, 389000.0], [435000.0, 388000.0]]]}}, {"id": "2154", "type": "Feature", "properties": {"easting": 435500.0, "northing": 388500.0, "gridsq": "X435Y388", "numresp": 67, "numpeople": 156.78, "numkeys": 3, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 388000.0], [435000.0, 388000.0], [435000.0, 389000.0], [436000.0, 389000.0], [436000.0, 388000.0]]]}}, {"id": "2155", "type": "Feature", "properties": {"easting": 437500.0, "northing": 388500.0, "gridsq": "X437Y388", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[438000.0, 388000.0], [437000.0, 388000.0], [437000.0, 389000.0], [438000.0, 389000.0], [438000.0, 388000.0]]]}}, {"id": "2156", "type": "Feature", "properties": {"easting": 438500.0, "northing": 388500.0, "gridsq": "X438Y388", "numresp": 18, "numpeople": 42.12, "numkeys": 3, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 388000.0], [438000.0, 388000.0], [438000.0, 389000.0], [439000.0, 389000.0], [439000.0, 388000.0]]]}}, {"id": "2157", "type": "Feature", "properties": {"easting": 449500.0, "northing": 388500.0, "gridsq": "X449Y388", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[450000.0, 388000.0], [449000.0, 388000.0], [449000.0, 389000.0], [450000.0, 389000.0], [450000.0, 388000.0]]]}}, {"id": "2158", "type": "Feature", "properties": {"easting": 533500.0, "northing": 388500.0, "gridsq": "X533Y388", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[534000.0, 388000.0], [533000.0, 388000.0], [533000.0, 389000.0], [534000.0, 389000.0], [534000.0, 388000.0]]]}}, {"id": "2159", "type": "Feature", "properties": {"easting": 331500.0, "northing": 389500.0, "gridsq": "X331Y389", "numresp": 79, "numpeople": 184.86, "numkeys": 5, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 389000.0], [331000.0, 389000.0], [331000.0, 390000.0], [332000.0, 390000.0], [332000.0, 389000.0]]]}}, {"id": "2160", "type": "Feature", "properties": {"easting": 338500.0, "northing": 389500.0, "gridsq": "X338Y389", "numresp": 119, "numpeople": 278.46, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[339000.0, 389000.0], [338000.0, 389000.0], [338000.0, 390000.0], [339000.0, 390000.0], [339000.0, 389000.0]]]}}, {"id": "2161", "type": "Feature", "properties": {"easting": 377500.0, "northing": 389500.0, "gridsq": "X377Y389", "numresp": 212, "numpeople": 496.08, "numkeys": 4, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 389000.0], [377000.0, 389000.0], [377000.0, 390000.0], [378000.0, 390000.0], [378000.0, 389000.0]]]}}, {"id": "2162", "type": "Feature", "properties": {"easting": 481500.0, "northing": 389500.0, "gridsq": "X481Y389", "numresp": 163, "numpeople": 381.42, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[482000.0, 389000.0], [481000.0, 389000.0], [481000.0, 390000.0], [482000.0, 390000.0], [482000.0, 389000.0]]]}}, {"id": "2163", "type": "Feature", "properties": {"easting": 482500.0, "northing": 389500.0, "gridsq": "X482Y389", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[483000.0, 389000.0], [482000.0, 389000.0], [482000.0, 390000.0], [483000.0, 390000.0], [483000.0, 389000.0]]]}}, {"id": "2164", "type": "Feature", "properties": {"easting": 483500.0, "northing": 389500.0, "gridsq": "X483Y389", "numresp": 109, "numpeople": 255.06, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[484000.0, 389000.0], [483000.0, 389000.0], [483000.0, 390000.0], [484000.0, 390000.0], [484000.0, 389000.0]]]}}, {"id": "2165", "type": "Feature", "properties": {"easting": 334500.0, "northing": 390500.0, "gridsq": "X334Y390", "numresp": 36, "numpeople": 84.24, "numkeys": 3, "numnonresp": 162, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 390000.0], [334000.0, 390000.0], [334000.0, 391000.0], [335000.0, 391000.0], [335000.0, 390000.0]]]}}, {"id": "2166", "type": "Feature", "properties": {"easting": 335500.0, "northing": 390500.0, "gridsq": "X335Y390", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 390000.0], [335000.0, 390000.0], [335000.0, 391000.0], [336000.0, 391000.0], [336000.0, 390000.0]]]}}, {"id": "2167", "type": "Feature", "properties": {"easting": 341500.0, "northing": 390500.0, "gridsq": "X341Y390", "numresp": 77, "numpeople": 180.18, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[342000.0, 390000.0], [341000.0, 390000.0], [341000.0, 391000.0], [342000.0, 391000.0], [342000.0, 390000.0]]]}}, {"id": "2168", "type": "Feature", "properties": {"easting": 344500.0, "northing": 390500.0, "gridsq": "X344Y390", "numresp": 21, "numpeople": 49.14, "numkeys": 4, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[345000.0, 390000.0], [344000.0, 390000.0], [344000.0, 391000.0], [345000.0, 391000.0], [345000.0, 390000.0]]]}}, {"id": "2169", "type": "Feature", "properties": {"easting": 358500.0, "northing": 390500.0, "gridsq": "X358Y390", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[359000.0, 390000.0], [358000.0, 390000.0], [358000.0, 391000.0], [359000.0, 391000.0], [359000.0, 390000.0]]]}}, {"id": "2170", "type": "Feature", "properties": {"easting": 365500.0, "northing": 390500.0, "gridsq": "X365Y390", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[366000.0, 390000.0], [365000.0, 390000.0], [365000.0, 391000.0], [366000.0, 391000.0], [366000.0, 390000.0]]]}}, {"id": "2171", "type": "Feature", "properties": {"easting": 389500.0, "northing": 390500.0, "gridsq": "X389Y390", "numresp": 9, "numpeople": 21.06, "numkeys": 3, "numnonresp": 80, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 390000.0], [389000.0, 390000.0], [389000.0, 391000.0], [390000.0, 391000.0], [390000.0, 390000.0]]]}}, {"id": "2172", "type": "Feature", "properties": {"easting": 394500.0, "northing": 390500.0, "gridsq": "X394Y390", "numresp": 25, "numpeople": 58.5, "numkeys": 3, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 390000.0], [394000.0, 390000.0], [394000.0, 391000.0], [395000.0, 391000.0], [395000.0, 390000.0]]]}}, {"id": "2173", "type": "Feature", "properties": {"easting": 396500.0, "northing": 390500.0, "gridsq": "X396Y390", "numresp": 48, "numpeople": 112.32, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 390000.0], [396000.0, 390000.0], [396000.0, 391000.0], [397000.0, 391000.0], [397000.0, 390000.0]]]}}, {"id": "2174", "type": "Feature", "properties": {"easting": 433500.0, "northing": 390500.0, "gridsq": "X433Y390", "numresp": 11, "numpeople": 25.74, "numkeys": 5, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 390000.0], [433000.0, 390000.0], [433000.0, 391000.0], [434000.0, 391000.0], [434000.0, 390000.0]]]}}, {"id": "2175", "type": "Feature", "properties": {"easting": 436500.0, "northing": 390500.0, "gridsq": "X436Y390", "numresp": 8, "numpeople": 18.72, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 390000.0], [436000.0, 390000.0], [436000.0, 391000.0], [437000.0, 391000.0], [437000.0, 390000.0]]]}}, {"id": "2176", "type": "Feature", "properties": {"easting": 438500.0, "northing": 390500.0, "gridsq": "X438Y390", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 390000.0], [438000.0, 390000.0], [438000.0, 391000.0], [439000.0, 391000.0], [439000.0, 390000.0]]]}}, {"id": "2177", "type": "Feature", "properties": {"easting": 442500.0, "northing": 390500.0, "gridsq": "X442Y390", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 390000.0], [442000.0, 390000.0], [442000.0, 391000.0], [443000.0, 391000.0], [443000.0, 390000.0]]]}}, {"id": "2178", "type": "Feature", "properties": {"easting": 445500.0, "northing": 390500.0, "gridsq": "X445Y390", "numresp": 101, "numpeople": 236.34, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[446000.0, 390000.0], [445000.0, 390000.0], [445000.0, 391000.0], [446000.0, 391000.0], [446000.0, 390000.0]]]}}, {"id": "2179", "type": "Feature", "properties": {"easting": 481500.0, "northing": 390500.0, "gridsq": "X481Y390", "numresp": 133, "numpeople": 311.22, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[482000.0, 390000.0], [481000.0, 390000.0], [481000.0, 391000.0], [482000.0, 391000.0], [482000.0, 390000.0]]]}}, {"id": "2180", "type": "Feature", "properties": {"easting": 330500.0, "northing": 391500.0, "gridsq": "X330Y391", "numresp": 14, "numpeople": 32.76, "numkeys": 3, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 391000.0], [330000.0, 391000.0], [330000.0, 392000.0], [331000.0, 392000.0], [331000.0, 391000.0]]]}}, {"id": "2181", "type": "Feature", "properties": {"easting": 335500.0, "northing": 391500.0, "gridsq": "X335Y391", "numresp": 19, "numpeople": 44.46, "numkeys": 3, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 391000.0], [335000.0, 391000.0], [335000.0, 392000.0], [336000.0, 392000.0], [336000.0, 391000.0]]]}}, {"id": "2182", "type": "Feature", "properties": {"easting": 339500.0, "northing": 391500.0, "gridsq": "X339Y391", "numresp": 97, "numpeople": 226.98, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[340000.0, 391000.0], [339000.0, 391000.0], [339000.0, 392000.0], [340000.0, 392000.0], [340000.0, 391000.0]]]}}, {"id": "2183", "type": "Feature", "properties": {"easting": 341500.0, "northing": 391500.0, "gridsq": "X341Y391", "numresp": 84, "numpeople": 196.56, "numkeys": 3, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[342000.0, 391000.0], [341000.0, 391000.0], [341000.0, 392000.0], [342000.0, 392000.0], [342000.0, 391000.0]]]}}, {"id": "2184", "type": "Feature", "properties": {"easting": 349500.0, "northing": 391500.0, "gridsq": "X349Y391", "numresp": 45, "numpeople": 105.3, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[350000.0, 391000.0], [349000.0, 391000.0], [349000.0, 392000.0], [350000.0, 392000.0], [350000.0, 391000.0]]]}}, {"id": "2185", "type": "Feature", "properties": {"easting": 431500.0, "northing": 391500.0, "gridsq": "X431Y391", "numresp": 141, "numpeople": 329.94, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 391000.0], [431000.0, 391000.0], [431000.0, 392000.0], [432000.0, 392000.0], [432000.0, 391000.0]]]}}, {"id": "2186", "type": "Feature", "properties": {"easting": 432500.0, "northing": 391500.0, "gridsq": "X432Y391", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 391000.0], [432000.0, 391000.0], [432000.0, 392000.0], [433000.0, 392000.0], [433000.0, 391000.0]]]}}, {"id": "2187", "type": "Feature", "properties": {"easting": 433500.0, "northing": 391500.0, "gridsq": "X433Y391", "numresp": 15, "numpeople": 35.1, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 391000.0], [433000.0, 391000.0], [433000.0, 392000.0], [434000.0, 392000.0], [434000.0, 391000.0]]]}}, {"id": "2188", "type": "Feature", "properties": {"easting": 435500.0, "northing": 391500.0, "gridsq": "X435Y391", "numresp": 28, "numpeople": 65.52, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 391000.0], [435000.0, 391000.0], [435000.0, 392000.0], [436000.0, 392000.0], [436000.0, 391000.0]]]}}, {"id": "2189", "type": "Feature", "properties": {"easting": 439500.0, "northing": 391500.0, "gridsq": "X439Y391", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[440000.0, 391000.0], [439000.0, 391000.0], [439000.0, 392000.0], [440000.0, 392000.0], [440000.0, 391000.0]]]}}, {"id": "2190", "type": "Feature", "properties": {"easting": 335500.0, "northing": 392500.0, "gridsq": "X335Y392", "numresp": 7, "numpeople": 16.38, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 392000.0], [335000.0, 392000.0], [335000.0, 393000.0], [336000.0, 393000.0], [336000.0, 392000.0]]]}}, {"id": "2191", "type": "Feature", "properties": {"easting": 336500.0, "northing": 392500.0, "gridsq": "X336Y392", "numresp": 16, "numpeople": 37.44, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 392000.0], [336000.0, 392000.0], [336000.0, 393000.0], [337000.0, 393000.0], [337000.0, 392000.0]]]}}, {"id": "2192", "type": "Feature", "properties": {"easting": 338500.0, "northing": 392500.0, "gridsq": "X338Y392", "numresp": 123, "numpeople": 287.82, "numkeys": 5, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[339000.0, 392000.0], [338000.0, 392000.0], [338000.0, 393000.0], [339000.0, 393000.0], [339000.0, 392000.0]]]}}, {"id": "2193", "type": "Feature", "properties": {"easting": 350500.0, "northing": 392500.0, "gridsq": "X350Y392", "numresp": 20, "numpeople": 46.8, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[351000.0, 392000.0], [350000.0, 392000.0], [350000.0, 393000.0], [351000.0, 393000.0], [351000.0, 392000.0]]]}}, {"id": "2194", "type": "Feature", "properties": {"easting": 442500.0, "northing": 392500.0, "gridsq": "X442Y392", "numresp": 1, "numpeople": 2.34, "numkeys": 1, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 392000.0], [442000.0, 392000.0], [442000.0, 393000.0], [443000.0, 393000.0], [443000.0, 392000.0]]]}}, {"id": "2195", "type": "Feature", "properties": {"easting": 443500.0, "northing": 392500.0, "gridsq": "X443Y392", "numresp": 122, "numpeople": 285.48, "numkeys": 2, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[444000.0, 392000.0], [443000.0, 392000.0], [443000.0, 393000.0], [444000.0, 393000.0], [444000.0, 392000.0]]]}}, {"id": "2196", "type": "Feature", "properties": {"easting": 476500.0, "northing": 392500.0, "gridsq": "X476Y392", "numresp": 75, "numpeople": 175.5, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[477000.0, 392000.0], [476000.0, 392000.0], [476000.0, 393000.0], [477000.0, 393000.0], [477000.0, 392000.0]]]}}, {"id": "2197", "type": "Feature", "properties": {"easting": 337500.0, "northing": 393500.0, "gridsq": "X337Y393", "numresp": 158, "numpeople": 369.72, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 393000.0], [337000.0, 393000.0], [337000.0, 394000.0], [338000.0, 394000.0], [338000.0, 393000.0]]]}}, {"id": "2198", "type": "Feature", "properties": {"easting": 371500.0, "northing": 393500.0, "gridsq": "X371Y393", "numresp": 28, "numpeople": 65.52, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 393000.0], [371000.0, 393000.0], [371000.0, 394000.0], [372000.0, 394000.0], [372000.0, 393000.0]]]}}, {"id": "2199", "type": "Feature", "properties": {"easting": 396500.0, "northing": 393500.0, "gridsq": "X396Y393", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 393000.0], [396000.0, 393000.0], [396000.0, 394000.0], [397000.0, 394000.0], [397000.0, 393000.0]]]}}, {"id": "2200", "type": "Feature", "properties": {"easting": 442500.0, "northing": 393500.0, "gridsq": "X442Y393", "numresp": 7, "numpeople": 16.38, "numkeys": 0, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 393000.0], [442000.0, 393000.0], [442000.0, 394000.0], [443000.0, 394000.0], [443000.0, 393000.0]]]}}, {"id": "2201", "type": "Feature", "properties": {"easting": 445500.0, "northing": 393500.0, "gridsq": "X445Y393", "numresp": 104, "numpeople": 243.36, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[446000.0, 393000.0], [445000.0, 393000.0], [445000.0, 394000.0], [446000.0, 394000.0], [446000.0, 393000.0]]]}}, {"id": "2202", "type": "Feature", "properties": {"easting": 459500.0, "northing": 393500.0, "gridsq": "X459Y393", "numresp": 43, "numpeople": 100.62, "numkeys": 1, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 393000.0], [459000.0, 393000.0], [459000.0, 394000.0], [460000.0, 394000.0], [460000.0, 393000.0]]]}}, {"id": "2203", "type": "Feature", "properties": {"easting": 333500.0, "northing": 394500.0, "gridsq": "X333Y394", "numresp": 0, "numpeople": 0.0, "numkeys": 5, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 394000.0], [333000.0, 394000.0], [333000.0, 395000.0], [334000.0, 395000.0], [334000.0, 394000.0]]]}}, {"id": "2204", "type": "Feature", "properties": {"easting": 334500.0, "northing": 394500.0, "gridsq": "X334Y394", "numresp": 218, "numpeople": 510.12, "numkeys": 5, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 394000.0], [334000.0, 394000.0], [334000.0, 395000.0], [335000.0, 395000.0], [335000.0, 394000.0]]]}}, {"id": "2205", "type": "Feature", "properties": {"easting": 335500.0, "northing": 394500.0, "gridsq": "X335Y394", "numresp": 25, "numpeople": 58.5, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 394000.0], [335000.0, 394000.0], [335000.0, 395000.0], [336000.0, 395000.0], [336000.0, 394000.0]]]}}, {"id": "2206", "type": "Feature", "properties": {"easting": 337500.0, "northing": 394500.0, "gridsq": "X337Y394", "numresp": 170, "numpeople": 397.8, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 394000.0], [337000.0, 394000.0], [337000.0, 395000.0], [338000.0, 395000.0], [338000.0, 394000.0]]]}}, {"id": "2207", "type": "Feature", "properties": {"easting": 349500.0, "northing": 394500.0, "gridsq": "X349Y394", "numresp": 144, "numpeople": 336.96, "numkeys": 1, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[350000.0, 394000.0], [349000.0, 394000.0], [349000.0, 395000.0], [350000.0, 395000.0], [350000.0, 394000.0]]]}}, {"id": "2208", "type": "Feature", "properties": {"easting": 353500.0, "northing": 394500.0, "gridsq": "X353Y394", "numresp": 43, "numpeople": 100.62, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[354000.0, 394000.0], [353000.0, 394000.0], [353000.0, 395000.0], [354000.0, 395000.0], [354000.0, 394000.0]]]}}, {"id": "2209", "type": "Feature", "properties": {"easting": 372500.0, "northing": 394500.0, "gridsq": "X372Y394", "numresp": 31, "numpeople": 72.54, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[373000.0, 394000.0], [372000.0, 394000.0], [372000.0, 395000.0], [373000.0, 395000.0], [373000.0, 394000.0]]]}}, {"id": "2210", "type": "Feature", "properties": {"easting": 387500.0, "northing": 394500.0, "gridsq": "X387Y394", "numresp": 104, "numpeople": 243.36, "numkeys": 1, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 394000.0], [387000.0, 394000.0], [387000.0, 395000.0], [388000.0, 395000.0], [388000.0, 394000.0]]]}}, {"id": "2211", "type": "Feature", "properties": {"easting": 395500.0, "northing": 394500.0, "gridsq": "X395Y394", "numresp": 56, "numpeople": 131.04, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 394000.0], [395000.0, 394000.0], [395000.0, 395000.0], [396000.0, 395000.0], [396000.0, 394000.0]]]}}, {"id": "2212", "type": "Feature", "properties": {"easting": 402500.0, "northing": 394500.0, "gridsq": "X402Y394", "numresp": 86, "numpeople": 201.24, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[403000.0, 394000.0], [402000.0, 394000.0], [402000.0, 395000.0], [403000.0, 395000.0], [403000.0, 394000.0]]]}}, {"id": "2213", "type": "Feature", "properties": {"easting": 403500.0, "northing": 394500.0, "gridsq": "X403Y394", "numresp": 58, "numpeople": 135.72, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[404000.0, 394000.0], [403000.0, 394000.0], [403000.0, 395000.0], [404000.0, 395000.0], [404000.0, 394000.0]]]}}, {"id": "2214", "type": "Feature", "properties": {"easting": 435500.0, "northing": 394500.0, "gridsq": "X435Y394", "numresp": 31, "numpeople": 72.54, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 394000.0], [435000.0, 394000.0], [435000.0, 395000.0], [436000.0, 395000.0], [436000.0, 394000.0]]]}}, {"id": "2215", "type": "Feature", "properties": {"easting": 333500.0, "northing": 395500.0, "gridsq": "X333Y395", "numresp": 52, "numpeople": 121.68, "numkeys": 8, "numnonresp": 41, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 395000.0], [333000.0, 395000.0], [333000.0, 396000.0], [334000.0, 396000.0], [334000.0, 395000.0]]]}}, {"id": "2216", "type": "Feature", "properties": {"easting": 334500.0, "northing": 395500.0, "gridsq": "X334Y395", "numresp": 1093, "numpeople": 2557.62, "numkeys": 15, "numnonresp": 219, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 395000.0], [334000.0, 395000.0], [334000.0, 396000.0], [335000.0, 396000.0], [335000.0, 395000.0]]]}}, {"id": "2217", "type": "Feature", "properties": {"easting": 348500.0, "northing": 395500.0, "gridsq": "X348Y395", "numresp": 17, "numpeople": 39.78, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[349000.0, 395000.0], [348000.0, 395000.0], [348000.0, 396000.0], [349000.0, 396000.0], [349000.0, 395000.0]]]}}, {"id": "2218", "type": "Feature", "properties": {"easting": 349500.0, "northing": 395500.0, "gridsq": "X349Y395", "numresp": 96, "numpeople": 224.64, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[350000.0, 395000.0], [349000.0, 395000.0], [349000.0, 396000.0], [350000.0, 396000.0], [350000.0, 395000.0]]]}}, {"id": "2219", "type": "Feature", "properties": {"easting": 350500.0, "northing": 395500.0, "gridsq": "X350Y395", "numresp": 56, "numpeople": 131.04, "numkeys": 1, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[351000.0, 395000.0], [350000.0, 395000.0], [350000.0, 396000.0], [351000.0, 396000.0], [351000.0, 395000.0]]]}}, {"id": "2220", "type": "Feature", "properties": {"easting": 357500.0, "northing": 395500.0, "gridsq": "X357Y395", "numresp": 130, "numpeople": 304.2, "numkeys": 0, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[358000.0, 395000.0], [357000.0, 395000.0], [357000.0, 396000.0], [358000.0, 396000.0], [358000.0, 395000.0]]]}}, {"id": "2221", "type": "Feature", "properties": {"easting": 391500.0, "northing": 395500.0, "gridsq": "X391Y395", "numresp": 20, "numpeople": 46.8, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 395000.0], [391000.0, 395000.0], [391000.0, 396000.0], [392000.0, 396000.0], [392000.0, 395000.0]]]}}, {"id": "2222", "type": "Feature", "properties": {"easting": 401500.0, "northing": 395500.0, "gridsq": "X401Y395", "numresp": 14, "numpeople": 32.76, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[402000.0, 395000.0], [401000.0, 395000.0], [401000.0, 396000.0], [402000.0, 396000.0], [402000.0, 395000.0]]]}}, {"id": "2223", "type": "Feature", "properties": {"easting": 332500.0, "northing": 396500.0, "gridsq": "X332Y396", "numresp": 24, "numpeople": 56.16, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 396000.0], [332000.0, 396000.0], [332000.0, 397000.0], [333000.0, 397000.0], [333000.0, 396000.0]]]}}, {"id": "2224", "type": "Feature", "properties": {"easting": 333500.0, "northing": 396500.0, "gridsq": "X333Y396", "numresp": 1209, "numpeople": 2829.06, "numkeys": 10, "numnonresp": 109, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 396000.0], [333000.0, 396000.0], [333000.0, 397000.0], [334000.0, 397000.0], [334000.0, 396000.0]]]}}, {"id": "2225", "type": "Feature", "properties": {"easting": 334500.0, "northing": 396500.0, "gridsq": "X334Y396", "numresp": 512, "numpeople": 1198.08, "numkeys": 8, "numnonresp": 61, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 396000.0], [334000.0, 396000.0], [334000.0, 397000.0], [335000.0, 397000.0], [335000.0, 396000.0]]]}}, {"id": "2226", "type": "Feature", "properties": {"easting": 335500.0, "northing": 396500.0, "gridsq": "X335Y396", "numresp": 130, "numpeople": 304.2, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 396000.0], [335000.0, 396000.0], [335000.0, 397000.0], [336000.0, 397000.0], [336000.0, 396000.0]]]}}, {"id": "2227", "type": "Feature", "properties": {"easting": 337500.0, "northing": 396500.0, "gridsq": "X337Y396", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 396000.0], [337000.0, 396000.0], [337000.0, 397000.0], [338000.0, 397000.0], [338000.0, 396000.0]]]}}, {"id": "2228", "type": "Feature", "properties": {"easting": 342500.0, "northing": 396500.0, "gridsq": "X342Y396", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[343000.0, 396000.0], [342000.0, 396000.0], [342000.0, 397000.0], [343000.0, 397000.0], [343000.0, 396000.0]]]}}, {"id": "2229", "type": "Feature", "properties": {"easting": 354500.0, "northing": 396500.0, "gridsq": "X354Y396", "numresp": 49, "numpeople": 114.66, "numkeys": 6, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[355000.0, 396000.0], [354000.0, 396000.0], [354000.0, 397000.0], [355000.0, 397000.0], [355000.0, 396000.0]]]}}, {"id": "2230", "type": "Feature", "properties": {"easting": 377500.0, "northing": 396500.0, "gridsq": "X377Y396", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 396000.0], [377000.0, 396000.0], [377000.0, 397000.0], [378000.0, 397000.0], [378000.0, 396000.0]]]}}, {"id": "2231", "type": "Feature", "properties": {"easting": 332500.0, "northing": 397500.0, "gridsq": "X332Y397", "numresp": 215, "numpeople": 503.1, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 397000.0], [332000.0, 397000.0], [332000.0, 398000.0], [333000.0, 398000.0], [333000.0, 397000.0]]]}}, {"id": "2232", "type": "Feature", "properties": {"easting": 333500.0, "northing": 397500.0, "gridsq": "X333Y397", "numresp": 193, "numpeople": 451.62, "numkeys": 11, "numnonresp": 71, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 397000.0], [333000.0, 397000.0], [333000.0, 398000.0], [334000.0, 398000.0], [334000.0, 397000.0]]]}}, {"id": "2233", "type": "Feature", "properties": {"easting": 334500.0, "northing": 397500.0, "gridsq": "X334Y397", "numresp": 170, "numpeople": 397.8, "numkeys": 6, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 397000.0], [334000.0, 397000.0], [334000.0, 398000.0], [335000.0, 398000.0], [335000.0, 397000.0]]]}}, {"id": "2234", "type": "Feature", "properties": {"easting": 335500.0, "northing": 397500.0, "gridsq": "X335Y397", "numresp": 87, "numpeople": 203.58, "numkeys": 4, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 397000.0], [335000.0, 397000.0], [335000.0, 398000.0], [336000.0, 398000.0], [336000.0, 397000.0]]]}}, {"id": "2235", "type": "Feature", "properties": {"easting": 336500.0, "northing": 397500.0, "gridsq": "X336Y397", "numresp": 20, "numpeople": 46.8, "numkeys": 3, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 397000.0], [336000.0, 397000.0], [336000.0, 398000.0], [337000.0, 398000.0], [337000.0, 397000.0]]]}}, {"id": "2236", "type": "Feature", "properties": {"easting": 356500.0, "northing": 397500.0, "gridsq": "X356Y397", "numresp": 26, "numpeople": 60.84, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[357000.0, 397000.0], [356000.0, 397000.0], [356000.0, 398000.0], [357000.0, 398000.0], [357000.0, 397000.0]]]}}, {"id": "2237", "type": "Feature", "properties": {"easting": 360500.0, "northing": 397500.0, "gridsq": "X360Y397", "numresp": 13, "numpeople": 30.42, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[361000.0, 397000.0], [360000.0, 397000.0], [360000.0, 398000.0], [361000.0, 398000.0], [361000.0, 397000.0]]]}}, {"id": "2238", "type": "Feature", "properties": {"easting": 384500.0, "northing": 397500.0, "gridsq": "X384Y397", "numresp": 506, "numpeople": 1184.04, "numkeys": 0, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 397000.0], [384000.0, 397000.0], [384000.0, 398000.0], [385000.0, 398000.0], [385000.0, 397000.0]]]}}, {"id": "2239", "type": "Feature", "properties": {"easting": 387500.0, "northing": 397500.0, "gridsq": "X387Y397", "numresp": 18, "numpeople": 42.12, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 397000.0], [387000.0, 397000.0], [387000.0, 398000.0], [388000.0, 398000.0], [388000.0, 397000.0]]]}}, {"id": "2240", "type": "Feature", "properties": {"easting": 434500.0, "northing": 397500.0, "gridsq": "X434Y397", "numresp": 20, "numpeople": 46.8, "numkeys": 3, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 397000.0], [434000.0, 397000.0], [434000.0, 398000.0], [435000.0, 398000.0], [435000.0, 397000.0]]]}}, {"id": "2241", "type": "Feature", "properties": {"easting": 330500.0, "northing": 398500.0, "gridsq": "X330Y398", "numresp": 156, "numpeople": 365.04, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 398000.0], [330000.0, 398000.0], [330000.0, 399000.0], [331000.0, 399000.0], [331000.0, 398000.0]]]}}, {"id": "2242", "type": "Feature", "properties": {"easting": 331500.0, "northing": 398500.0, "gridsq": "X331Y398", "numresp": 324, "numpeople": 758.16, "numkeys": 2, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 398000.0], [331000.0, 398000.0], [331000.0, 399000.0], [332000.0, 399000.0], [332000.0, 398000.0]]]}}, {"id": "2243", "type": "Feature", "properties": {"easting": 332500.0, "northing": 398500.0, "gridsq": "X332Y398", "numresp": 407, "numpeople": 952.38, "numkeys": 6, "numnonresp": 54, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 398000.0], [332000.0, 398000.0], [332000.0, 399000.0], [333000.0, 399000.0], [333000.0, 398000.0]]]}}, {"id": "2244", "type": "Feature", "properties": {"easting": 333500.0, "northing": 398500.0, "gridsq": "X333Y398", "numresp": 190, "numpeople": 444.6, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 398000.0], [333000.0, 398000.0], [333000.0, 399000.0], [334000.0, 399000.0], [334000.0, 398000.0]]]}}, {"id": "2245", "type": "Feature", "properties": {"easting": 334500.0, "northing": 398500.0, "gridsq": "X334Y398", "numresp": 186, "numpeople": 435.24, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 398000.0], [334000.0, 398000.0], [334000.0, 399000.0], [335000.0, 399000.0], [335000.0, 398000.0]]]}}, {"id": "2246", "type": "Feature", "properties": {"easting": 335500.0, "northing": 398500.0, "gridsq": "X335Y398", "numresp": 59, "numpeople": 138.06, "numkeys": 3, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 398000.0], [335000.0, 398000.0], [335000.0, 399000.0], [336000.0, 399000.0], [336000.0, 398000.0]]]}}, {"id": "2247", "type": "Feature", "properties": {"easting": 336500.0, "northing": 398500.0, "gridsq": "X336Y398", "numresp": 135, "numpeople": 315.9, "numkeys": 9, "numnonresp": 60, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 398000.0], [336000.0, 398000.0], [336000.0, 399000.0], [337000.0, 399000.0], [337000.0, 398000.0]]]}}, {"id": "2248", "type": "Feature", "properties": {"easting": 337500.0, "northing": 398500.0, "gridsq": "X337Y398", "numresp": 42, "numpeople": 98.28, "numkeys": 5, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 398000.0], [337000.0, 398000.0], [337000.0, 399000.0], [338000.0, 399000.0], [338000.0, 398000.0]]]}}, {"id": "2249", "type": "Feature", "properties": {"easting": 338500.0, "northing": 398500.0, "gridsq": "X338Y398", "numresp": 59, "numpeople": 138.06, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[339000.0, 398000.0], [338000.0, 398000.0], [338000.0, 399000.0], [339000.0, 399000.0], [339000.0, 398000.0]]]}}, {"id": "2250", "type": "Feature", "properties": {"easting": 341500.0, "northing": 398500.0, "gridsq": "X341Y398", "numresp": 11, "numpeople": 25.74, "numkeys": 4, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[342000.0, 398000.0], [341000.0, 398000.0], [341000.0, 399000.0], [342000.0, 399000.0], [342000.0, 398000.0]]]}}, {"id": "2251", "type": "Feature", "properties": {"easting": 357500.0, "northing": 398500.0, "gridsq": "X357Y398", "numresp": 21, "numpeople": 49.14, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[358000.0, 398000.0], [357000.0, 398000.0], [357000.0, 399000.0], [358000.0, 399000.0], [358000.0, 398000.0]]]}}, {"id": "2252", "type": "Feature", "properties": {"easting": 383500.0, "northing": 398500.0, "gridsq": "X383Y398", "numresp": 45, "numpeople": 105.3, "numkeys": 4, "numnonresp": 143, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 398000.0], [383000.0, 398000.0], [383000.0, 399000.0], [384000.0, 399000.0], [384000.0, 398000.0]]]}}, {"id": "2253", "type": "Feature", "properties": {"easting": 384500.0, "northing": 398500.0, "gridsq": "X384Y398", "numresp": 63, "numpeople": 147.42, "numkeys": 0, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 398000.0], [384000.0, 398000.0], [384000.0, 399000.0], [385000.0, 399000.0], [385000.0, 398000.0]]]}}, {"id": "2254", "type": "Feature", "properties": {"easting": 390500.0, "northing": 398500.0, "gridsq": "X390Y398", "numresp": 31, "numpeople": 72.54, "numkeys": 5, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 398000.0], [390000.0, 398000.0], [390000.0, 399000.0], [391000.0, 399000.0], [391000.0, 398000.0]]]}}, {"id": "2255", "type": "Feature", "properties": {"easting": 393500.0, "northing": 398500.0, "gridsq": "X393Y398", "numresp": 65, "numpeople": 152.1, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 398000.0], [393000.0, 398000.0], [393000.0, 399000.0], [394000.0, 399000.0], [394000.0, 398000.0]]]}}, {"id": "2256", "type": "Feature", "properties": {"easting": 394500.0, "northing": 398500.0, "gridsq": "X394Y398", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 398000.0], [394000.0, 398000.0], [394000.0, 399000.0], [395000.0, 399000.0], [395000.0, 398000.0]]]}}, {"id": "2257", "type": "Feature", "properties": {"easting": 395500.0, "northing": 398500.0, "gridsq": "X395Y398", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[396000.0, 398000.0], [395000.0, 398000.0], [395000.0, 399000.0], [396000.0, 399000.0], [396000.0, 398000.0]]]}}, {"id": "2258", "type": "Feature", "properties": {"easting": 396500.0, "northing": 398500.0, "gridsq": "X396Y398", "numresp": 181, "numpeople": 423.54, "numkeys": 0, "numnonresp": 142, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 398000.0], [396000.0, 398000.0], [396000.0, 399000.0], [397000.0, 399000.0], [397000.0, 398000.0]]]}}, {"id": "2259", "type": "Feature", "properties": {"easting": 397500.0, "northing": 398500.0, "gridsq": "X397Y398", "numresp": 48, "numpeople": 112.32, "numkeys": 1, "numnonresp": 41, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[398000.0, 398000.0], [397000.0, 398000.0], [397000.0, 399000.0], [398000.0, 399000.0], [398000.0, 398000.0]]]}}, {"id": "2260", "type": "Feature", "properties": {"easting": 446500.0, "northing": 398500.0, "gridsq": "X446Y398", "numresp": 44, "numpeople": 102.96, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[447000.0, 398000.0], [446000.0, 398000.0], [446000.0, 399000.0], [447000.0, 399000.0], [447000.0, 398000.0]]]}}, {"id": "2261", "type": "Feature", "properties": {"easting": 330500.0, "northing": 399500.0, "gridsq": "X330Y399", "numresp": 134, "numpeople": 313.56, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 399000.0], [330000.0, 399000.0], [330000.0, 400000.0], [331000.0, 400000.0], [331000.0, 399000.0]]]}}, {"id": "2262", "type": "Feature", "properties": {"easting": 331500.0, "northing": 399500.0, "gridsq": "X331Y399", "numresp": 523, "numpeople": 1223.82, "numkeys": 11, "numnonresp": 56, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 399000.0], [331000.0, 399000.0], [331000.0, 400000.0], [332000.0, 400000.0], [332000.0, 399000.0]]]}}, {"id": "2263", "type": "Feature", "properties": {"easting": 332500.0, "northing": 399500.0, "gridsq": "X332Y399", "numresp": 388, "numpeople": 907.92, "numkeys": 6, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 399000.0], [332000.0, 399000.0], [332000.0, 400000.0], [333000.0, 400000.0], [333000.0, 399000.0]]]}}, {"id": "2264", "type": "Feature", "properties": {"easting": 333500.0, "northing": 399500.0, "gridsq": "X333Y399", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 399000.0], [333000.0, 399000.0], [333000.0, 400000.0], [334000.0, 400000.0], [334000.0, 399000.0]]]}}, {"id": "2265", "type": "Feature", "properties": {"easting": 334500.0, "northing": 399500.0, "gridsq": "X334Y399", "numresp": 160, "numpeople": 374.4, "numkeys": 4, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 399000.0], [334000.0, 399000.0], [334000.0, 400000.0], [335000.0, 400000.0], [335000.0, 399000.0]]]}}, {"id": "2266", "type": "Feature", "properties": {"easting": 335500.0, "northing": 399500.0, "gridsq": "X335Y399", "numresp": 264, "numpeople": 617.76, "numkeys": 6, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 399000.0], [335000.0, 399000.0], [335000.0, 400000.0], [336000.0, 400000.0], [336000.0, 399000.0]]]}}, {"id": "2267", "type": "Feature", "properties": {"easting": 336500.0, "northing": 399500.0, "gridsq": "X336Y399", "numresp": 180, "numpeople": 421.2, "numkeys": 7, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 399000.0], [336000.0, 399000.0], [336000.0, 400000.0], [337000.0, 400000.0], [337000.0, 399000.0]]]}}, {"id": "2268", "type": "Feature", "properties": {"easting": 337500.0, "northing": 399500.0, "gridsq": "X337Y399", "numresp": 86, "numpeople": 201.24, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 399000.0], [337000.0, 399000.0], [337000.0, 400000.0], [338000.0, 400000.0], [338000.0, 399000.0]]]}}, {"id": "2269", "type": "Feature", "properties": {"easting": 339500.0, "northing": 399500.0, "gridsq": "X339Y399", "numresp": 168, "numpeople": 393.12, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[340000.0, 399000.0], [339000.0, 399000.0], [339000.0, 400000.0], [340000.0, 400000.0], [340000.0, 399000.0]]]}}, {"id": "2270", "type": "Feature", "properties": {"easting": 357500.0, "northing": 399500.0, "gridsq": "X357Y399", "numresp": 40, "numpeople": 93.6, "numkeys": 1, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[358000.0, 399000.0], [357000.0, 399000.0], [357000.0, 400000.0], [358000.0, 400000.0], [358000.0, 399000.0]]]}}, {"id": "2271", "type": "Feature", "properties": {"easting": 364500.0, "northing": 399500.0, "gridsq": "X364Y399", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[365000.0, 399000.0], [364000.0, 399000.0], [364000.0, 400000.0], [365000.0, 400000.0], [365000.0, 399000.0]]]}}, {"id": "2272", "type": "Feature", "properties": {"easting": 376500.0, "northing": 399500.0, "gridsq": "X376Y399", "numresp": 107, "numpeople": 250.38, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[377000.0, 399000.0], [376000.0, 399000.0], [376000.0, 400000.0], [377000.0, 400000.0], [377000.0, 399000.0]]]}}, {"id": "2273", "type": "Feature", "properties": {"easting": 378500.0, "northing": 399500.0, "gridsq": "X378Y399", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[379000.0, 399000.0], [378000.0, 399000.0], [378000.0, 400000.0], [379000.0, 400000.0], [379000.0, 399000.0]]]}}, {"id": "2274", "type": "Feature", "properties": {"easting": 383500.0, "northing": 399500.0, "gridsq": "X383Y399", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 81, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 399000.0], [383000.0, 399000.0], [383000.0, 400000.0], [384000.0, 400000.0], [384000.0, 399000.0]]]}}, {"id": "2275", "type": "Feature", "properties": {"easting": 393500.0, "northing": 399500.0, "gridsq": "X393Y399", "numresp": 185, "numpeople": 432.9, "numkeys": 2, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 399000.0], [393000.0, 399000.0], [393000.0, 400000.0], [394000.0, 400000.0], [394000.0, 399000.0]]]}}, {"id": "2276", "type": "Feature", "properties": {"easting": 397500.0, "northing": 399500.0, "gridsq": "X397Y399", "numresp": 57, "numpeople": 133.38, "numkeys": 2, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[398000.0, 399000.0], [397000.0, 399000.0], [397000.0, 400000.0], [398000.0, 400000.0], [398000.0, 399000.0]]]}}, {"id": "2277", "type": "Feature", "properties": {"easting": 330500.0, "northing": 400500.0, "gridsq": "X330Y400", "numresp": 110, "numpeople": 257.4, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 400000.0], [330000.0, 400000.0], [330000.0, 401000.0], [331000.0, 401000.0], [331000.0, 400000.0]]]}}, {"id": "2278", "type": "Feature", "properties": {"easting": 331500.0, "northing": 400500.0, "gridsq": "X331Y400", "numresp": 247, "numpeople": 577.98, "numkeys": 3, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 400000.0], [331000.0, 400000.0], [331000.0, 401000.0], [332000.0, 401000.0], [332000.0, 400000.0]]]}}, {"id": "2279", "type": "Feature", "properties": {"easting": 333500.0, "northing": 400500.0, "gridsq": "X333Y400", "numresp": 237, "numpeople": 554.58, "numkeys": 6, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 400000.0], [333000.0, 400000.0], [333000.0, 401000.0], [334000.0, 401000.0], [334000.0, 400000.0]]]}}, {"id": "2280", "type": "Feature", "properties": {"easting": 335500.0, "northing": 400500.0, "gridsq": "X335Y400", "numresp": 103, "numpeople": 241.02, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 400000.0], [335000.0, 400000.0], [335000.0, 401000.0], [336000.0, 401000.0], [336000.0, 400000.0]]]}}, {"id": "2281", "type": "Feature", "properties": {"easting": 337500.0, "northing": 400500.0, "gridsq": "X337Y400", "numresp": 267, "numpeople": 624.78, "numkeys": 6, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 400000.0], [337000.0, 400000.0], [337000.0, 401000.0], [338000.0, 401000.0], [338000.0, 400000.0]]]}}, {"id": "2282", "type": "Feature", "properties": {"easting": 365500.0, "northing": 400500.0, "gridsq": "X365Y400", "numresp": 123, "numpeople": 287.82, "numkeys": 0, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[366000.0, 400000.0], [365000.0, 400000.0], [365000.0, 401000.0], [366000.0, 401000.0], [366000.0, 400000.0]]]}}, {"id": "2283", "type": "Feature", "properties": {"easting": 388500.0, "northing": 400500.0, "gridsq": "X388Y400", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 400000.0], [388000.0, 400000.0], [388000.0, 401000.0], [389000.0, 401000.0], [389000.0, 400000.0]]]}}, {"id": "2284", "type": "Feature", "properties": {"easting": 394500.0, "northing": 400500.0, "gridsq": "X394Y400", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 400000.0], [394000.0, 400000.0], [394000.0, 401000.0], [395000.0, 401000.0], [395000.0, 400000.0]]]}}, {"id": "2285", "type": "Feature", "properties": {"easting": 443500.0, "northing": 400500.0, "gridsq": "X443Y400", "numresp": 51, "numpeople": 119.34, "numkeys": 3, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[444000.0, 400000.0], [443000.0, 400000.0], [443000.0, 401000.0], [444000.0, 401000.0], [444000.0, 400000.0]]]}}, {"id": "2286", "type": "Feature", "properties": {"easting": 460500.0, "northing": 400500.0, "gridsq": "X460Y400", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 400000.0], [460000.0, 400000.0], [460000.0, 401000.0], [461000.0, 401000.0], [461000.0, 400000.0]]]}}, {"id": "2287", "type": "Feature", "properties": {"easting": 336500.0, "northing": 401500.0, "gridsq": "X336Y401", "numresp": 238, "numpeople": 556.92, "numkeys": 4, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 401000.0], [336000.0, 401000.0], [336000.0, 402000.0], [337000.0, 402000.0], [337000.0, 401000.0]]]}}, {"id": "2288", "type": "Feature", "properties": {"easting": 337500.0, "northing": 401500.0, "gridsq": "X337Y401", "numresp": 196, "numpeople": 458.64, "numkeys": 9, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 401000.0], [337000.0, 401000.0], [337000.0, 402000.0], [338000.0, 402000.0], [338000.0, 401000.0]]]}}, {"id": "2289", "type": "Feature", "properties": {"easting": 369500.0, "northing": 401500.0, "gridsq": "X369Y401", "numresp": 112, "numpeople": 262.08, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 401000.0], [369000.0, 401000.0], [369000.0, 402000.0], [370000.0, 402000.0], [370000.0, 401000.0]]]}}, {"id": "2290", "type": "Feature", "properties": {"easting": 377500.0, "northing": 401500.0, "gridsq": "X377Y401", "numresp": 22, "numpeople": 51.48, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 401000.0], [377000.0, 401000.0], [377000.0, 402000.0], [378000.0, 402000.0], [378000.0, 401000.0]]]}}, {"id": "2291", "type": "Feature", "properties": {"easting": 378500.0, "northing": 401500.0, "gridsq": "X378Y401", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[379000.0, 401000.0], [378000.0, 401000.0], [378000.0, 402000.0], [379000.0, 402000.0], [379000.0, 401000.0]]]}}, {"id": "2292", "type": "Feature", "properties": {"easting": 381500.0, "northing": 401500.0, "gridsq": "X381Y401", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[382000.0, 401000.0], [381000.0, 401000.0], [381000.0, 402000.0], [382000.0, 402000.0], [382000.0, 401000.0]]]}}, {"id": "2293", "type": "Feature", "properties": {"easting": 393500.0, "northing": 401500.0, "gridsq": "X393Y401", "numresp": 94, "numpeople": 219.96, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 401000.0], [393000.0, 401000.0], [393000.0, 402000.0], [394000.0, 402000.0], [394000.0, 401000.0]]]}}, {"id": "2294", "type": "Feature", "properties": {"easting": 442500.0, "northing": 401500.0, "gridsq": "X442Y401", "numresp": 97, "numpeople": 226.98, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[443000.0, 401000.0], [442000.0, 401000.0], [442000.0, 402000.0], [443000.0, 402000.0], [443000.0, 401000.0]]]}}, {"id": "2295", "type": "Feature", "properties": {"easting": 459500.0, "northing": 401500.0, "gridsq": "X459Y401", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[460000.0, 401000.0], [459000.0, 401000.0], [459000.0, 402000.0], [460000.0, 402000.0], [460000.0, 401000.0]]]}}, {"id": "2296", "type": "Feature", "properties": {"easting": 337500.0, "northing": 402500.0, "gridsq": "X337Y402", "numresp": 305, "numpeople": 713.7, "numkeys": 6, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 402000.0], [337000.0, 402000.0], [337000.0, 403000.0], [338000.0, 403000.0], [338000.0, 402000.0]]]}}, {"id": "2297", "type": "Feature", "properties": {"easting": 338500.0, "northing": 402500.0, "gridsq": "X338Y402", "numresp": 262, "numpeople": 613.08, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[339000.0, 402000.0], [338000.0, 402000.0], [338000.0, 403000.0], [339000.0, 403000.0], [339000.0, 402000.0]]]}}, {"id": "2298", "type": "Feature", "properties": {"easting": 360500.0, "northing": 402500.0, "gridsq": "X360Y402", "numresp": 36, "numpeople": 84.24, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[361000.0, 402000.0], [360000.0, 402000.0], [360000.0, 403000.0], [361000.0, 403000.0], [361000.0, 402000.0]]]}}, {"id": "2299", "type": "Feature", "properties": {"easting": 371500.0, "northing": 402500.0, "gridsq": "X371Y402", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 402000.0], [371000.0, 402000.0], [371000.0, 403000.0], [372000.0, 403000.0], [372000.0, 402000.0]]]}}, {"id": "2300", "type": "Feature", "properties": {"easting": 385500.0, "northing": 402500.0, "gridsq": "X385Y402", "numresp": 12, "numpeople": 28.08, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 402000.0], [385000.0, 402000.0], [385000.0, 403000.0], [386000.0, 403000.0], [386000.0, 402000.0]]]}}, {"id": "2301", "type": "Feature", "properties": {"easting": 388500.0, "northing": 402500.0, "gridsq": "X388Y402", "numresp": 32, "numpeople": 74.88, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 402000.0], [388000.0, 402000.0], [388000.0, 403000.0], [389000.0, 403000.0], [389000.0, 402000.0]]]}}, {"id": "2302", "type": "Feature", "properties": {"easting": 528500.0, "northing": 402500.0, "gridsq": "X528Y402", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[529000.0, 402000.0], [528000.0, 402000.0], [528000.0, 403000.0], [529000.0, 403000.0], [529000.0, 402000.0]]]}}, {"id": "2303", "type": "Feature", "properties": {"easting": 329500.0, "northing": 403500.0, "gridsq": "X329Y403", "numresp": 57, "numpeople": 133.38, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[330000.0, 403000.0], [329000.0, 403000.0], [329000.0, 404000.0], [330000.0, 404000.0], [330000.0, 403000.0]]]}}, {"id": "2304", "type": "Feature", "properties": {"easting": 337500.0, "northing": 403500.0, "gridsq": "X337Y403", "numresp": 260, "numpeople": 608.4, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 403000.0], [337000.0, 403000.0], [337000.0, 404000.0], [338000.0, 404000.0], [338000.0, 403000.0]]]}}, {"id": "2305", "type": "Feature", "properties": {"easting": 357500.0, "northing": 403500.0, "gridsq": "X357Y403", "numresp": 128, "numpeople": 299.52, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[358000.0, 403000.0], [357000.0, 403000.0], [357000.0, 404000.0], [358000.0, 404000.0], [358000.0, 403000.0]]]}}, {"id": "2306", "type": "Feature", "properties": {"easting": 366500.0, "northing": 403500.0, "gridsq": "X366Y403", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 403000.0], [366000.0, 403000.0], [366000.0, 404000.0], [367000.0, 404000.0], [367000.0, 403000.0]]]}}, {"id": "2307", "type": "Feature", "properties": {"easting": 387500.0, "northing": 403500.0, "gridsq": "X387Y403", "numresp": 95, "numpeople": 222.3, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 403000.0], [387000.0, 403000.0], [387000.0, 404000.0], [388000.0, 404000.0], [388000.0, 403000.0]]]}}, {"id": "2308", "type": "Feature", "properties": {"easting": 389500.0, "northing": 403500.0, "gridsq": "X389Y403", "numresp": 44, "numpeople": 102.96, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 403000.0], [389000.0, 403000.0], [389000.0, 404000.0], [390000.0, 404000.0], [390000.0, 403000.0]]]}}, {"id": "2309", "type": "Feature", "properties": {"easting": 457500.0, "northing": 403500.0, "gridsq": "X457Y403", "numresp": 52, "numpeople": 121.68, "numkeys": 0, "numnonresp": 66, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 403000.0], [457000.0, 403000.0], [457000.0, 404000.0], [458000.0, 404000.0], [458000.0, 403000.0]]]}}, {"id": "2310", "type": "Feature", "properties": {"easting": 356500.0, "northing": 404500.0, "gridsq": "X356Y404", "numresp": 78, "numpeople": 182.52, "numkeys": 4, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[357000.0, 404000.0], [356000.0, 404000.0], [356000.0, 405000.0], [357000.0, 405000.0], [357000.0, 404000.0]]]}}, {"id": "2311", "type": "Feature", "properties": {"easting": 393500.0, "northing": 404500.0, "gridsq": "X393Y404", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 404000.0], [393000.0, 404000.0], [393000.0, 405000.0], [394000.0, 405000.0], [394000.0, 404000.0]]]}}, {"id": "2312", "type": "Feature", "properties": {"easting": 431500.0, "northing": 404500.0, "gridsq": "X431Y404", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 404000.0], [431000.0, 404000.0], [431000.0, 405000.0], [432000.0, 405000.0], [432000.0, 404000.0]]]}}, {"id": "2313", "type": "Feature", "properties": {"easting": 455500.0, "northing": 404500.0, "gridsq": "X455Y404", "numresp": 27, "numpeople": 63.18, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[456000.0, 404000.0], [455000.0, 404000.0], [455000.0, 405000.0], [456000.0, 405000.0], [456000.0, 404000.0]]]}}, {"id": "2314", "type": "Feature", "properties": {"easting": 460500.0, "northing": 404500.0, "gridsq": "X460Y404", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 404000.0], [460000.0, 404000.0], [460000.0, 405000.0], [461000.0, 405000.0], [461000.0, 404000.0]]]}}, {"id": "2315", "type": "Feature", "properties": {"easting": 340500.0, "northing": 405500.0, "gridsq": "X340Y405", "numresp": 38, "numpeople": 88.92, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[341000.0, 405000.0], [340000.0, 405000.0], [340000.0, 406000.0], [341000.0, 406000.0], [341000.0, 405000.0]]]}}, {"id": "2316", "type": "Feature", "properties": {"easting": 357500.0, "northing": 405500.0, "gridsq": "X357Y405", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[358000.0, 405000.0], [357000.0, 405000.0], [357000.0, 406000.0], [358000.0, 406000.0], [358000.0, 405000.0]]]}}, {"id": "2317", "type": "Feature", "properties": {"easting": 358500.0, "northing": 405500.0, "gridsq": "X358Y405", "numresp": 233, "numpeople": 545.22, "numkeys": 4, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[359000.0, 405000.0], [358000.0, 405000.0], [358000.0, 406000.0], [359000.0, 406000.0], [359000.0, 405000.0]]]}}, {"id": "2318", "type": "Feature", "properties": {"easting": 373500.0, "northing": 405500.0, "gridsq": "X373Y405", "numresp": 95, "numpeople": 222.3, "numkeys": 1, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[374000.0, 405000.0], [373000.0, 405000.0], [373000.0, 406000.0], [374000.0, 406000.0], [374000.0, 405000.0]]]}}, {"id": "2319", "type": "Feature", "properties": {"easting": 387500.0, "northing": 405500.0, "gridsq": "X387Y405", "numresp": 23, "numpeople": 53.82, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 405000.0], [387000.0, 405000.0], [387000.0, 406000.0], [388000.0, 406000.0], [388000.0, 405000.0]]]}}, {"id": "2320", "type": "Feature", "properties": {"easting": 392500.0, "northing": 405500.0, "gridsq": "X392Y405", "numresp": 52, "numpeople": 121.68, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 405000.0], [392000.0, 405000.0], [392000.0, 406000.0], [393000.0, 406000.0], [393000.0, 405000.0]]]}}, {"id": "2321", "type": "Feature", "properties": {"easting": 393500.0, "northing": 405500.0, "gridsq": "X393Y405", "numresp": 13, "numpeople": 30.42, "numkeys": 0, "numnonresp": 32, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 405000.0], [393000.0, 405000.0], [393000.0, 406000.0], [394000.0, 406000.0], [394000.0, 405000.0]]]}}, {"id": "2322", "type": "Feature", "properties": {"easting": 399500.0, "northing": 405500.0, "gridsq": "X399Y405", "numresp": 299, "numpeople": 699.66, "numkeys": 4, "numnonresp": 53, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[400000.0, 405000.0], [399000.0, 405000.0], [399000.0, 406000.0], [400000.0, 406000.0], [400000.0, 405000.0]]]}}, {"id": "2323", "type": "Feature", "properties": {"easting": 431500.0, "northing": 405500.0, "gridsq": "X431Y405", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 405000.0], [431000.0, 405000.0], [431000.0, 406000.0], [432000.0, 406000.0], [432000.0, 405000.0]]]}}, {"id": "2324", "type": "Feature", "properties": {"easting": 445500.0, "northing": 405500.0, "gridsq": "X445Y405", "numresp": 131, "numpeople": 306.54, "numkeys": 4, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[446000.0, 405000.0], [445000.0, 405000.0], [445000.0, 406000.0], [446000.0, 406000.0], [446000.0, 405000.0]]]}}, {"id": "2325", "type": "Feature", "properties": {"easting": 328500.0, "northing": 406500.0, "gridsq": "X328Y406", "numresp": 170, "numpeople": 397.8, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[329000.0, 406000.0], [328000.0, 406000.0], [328000.0, 407000.0], [329000.0, 407000.0], [329000.0, 406000.0]]]}}, {"id": "2326", "type": "Feature", "properties": {"easting": 329500.0, "northing": 406500.0, "gridsq": "X329Y406", "numresp": 200, "numpeople": 468.0, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[330000.0, 406000.0], [329000.0, 406000.0], [329000.0, 407000.0], [330000.0, 407000.0], [330000.0, 406000.0]]]}}, {"id": "2327", "type": "Feature", "properties": {"easting": 330500.0, "northing": 406500.0, "gridsq": "X330Y406", "numresp": 464, "numpeople": 1085.76, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 406000.0], [330000.0, 406000.0], [330000.0, 407000.0], [331000.0, 407000.0], [331000.0, 406000.0]]]}}, {"id": "2328", "type": "Feature", "properties": {"easting": 331500.0, "northing": 406500.0, "gridsq": "X331Y406", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 406000.0], [331000.0, 406000.0], [331000.0, 407000.0], [332000.0, 407000.0], [332000.0, 406000.0]]]}}, {"id": "2329", "type": "Feature", "properties": {"easting": 347500.0, "northing": 406500.0, "gridsq": "X347Y406", "numresp": 103, "numpeople": 241.02, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[348000.0, 406000.0], [347000.0, 406000.0], [347000.0, 407000.0], [348000.0, 407000.0], [348000.0, 406000.0]]]}}, {"id": "2330", "type": "Feature", "properties": {"easting": 356500.0, "northing": 406500.0, "gridsq": "X356Y406", "numresp": 45, "numpeople": 105.3, "numkeys": 2, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[357000.0, 406000.0], [356000.0, 406000.0], [356000.0, 407000.0], [357000.0, 407000.0], [357000.0, 406000.0]]]}}, {"id": "2331", "type": "Feature", "properties": {"easting": 386500.0, "northing": 406500.0, "gridsq": "X386Y406", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 406000.0], [386000.0, 406000.0], [386000.0, 407000.0], [387000.0, 407000.0], [387000.0, 406000.0]]]}}, {"id": "2332", "type": "Feature", "properties": {"easting": 434500.0, "northing": 406500.0, "gridsq": "X434Y406", "numresp": 9, "numpeople": 21.06, "numkeys": 3, "numnonresp": 68, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 406000.0], [434000.0, 406000.0], [434000.0, 407000.0], [435000.0, 407000.0], [435000.0, 406000.0]]]}}, {"id": "2333", "type": "Feature", "properties": {"easting": 529500.0, "northing": 406500.0, "gridsq": "X529Y406", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[530000.0, 406000.0], [529000.0, 406000.0], [529000.0, 407000.0], [530000.0, 407000.0], [530000.0, 406000.0]]]}}, {"id": "2334", "type": "Feature", "properties": {"easting": 328500.0, "northing": 407500.0, "gridsq": "X328Y407", "numresp": 91, "numpeople": 212.94, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[329000.0, 407000.0], [328000.0, 407000.0], [328000.0, 408000.0], [329000.0, 408000.0], [329000.0, 407000.0]]]}}, {"id": "2335", "type": "Feature", "properties": {"easting": 330500.0, "northing": 407500.0, "gridsq": "X330Y407", "numresp": 109, "numpeople": 255.06, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 407000.0], [330000.0, 407000.0], [330000.0, 408000.0], [331000.0, 408000.0], [331000.0, 407000.0]]]}}, {"id": "2336", "type": "Feature", "properties": {"easting": 370500.0, "northing": 407500.0, "gridsq": "X370Y407", "numresp": 19, "numpeople": 44.46, "numkeys": 6, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[371000.0, 407000.0], [370000.0, 407000.0], [370000.0, 408000.0], [371000.0, 408000.0], [371000.0, 407000.0]]]}}, {"id": "2337", "type": "Feature", "properties": {"easting": 372500.0, "northing": 407500.0, "gridsq": "X372Y407", "numresp": 25, "numpeople": 58.5, "numkeys": 3, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[373000.0, 407000.0], [372000.0, 407000.0], [372000.0, 408000.0], [373000.0, 408000.0], [373000.0, 407000.0]]]}}, {"id": "2338", "type": "Feature", "properties": {"easting": 374500.0, "northing": 407500.0, "gridsq": "X374Y407", "numresp": 42, "numpeople": 98.28, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[375000.0, 407000.0], [374000.0, 407000.0], [374000.0, 408000.0], [375000.0, 408000.0], [375000.0, 407000.0]]]}}, {"id": "2339", "type": "Feature", "properties": {"easting": 379500.0, "northing": 407500.0, "gridsq": "X379Y407", "numresp": 35, "numpeople": 81.9, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[380000.0, 407000.0], [379000.0, 407000.0], [379000.0, 408000.0], [380000.0, 408000.0], [380000.0, 407000.0]]]}}, {"id": "2340", "type": "Feature", "properties": {"easting": 398500.0, "northing": 407500.0, "gridsq": "X398Y407", "numresp": 110, "numpeople": 257.4, "numkeys": 2, "numnonresp": 95, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[399000.0, 407000.0], [398000.0, 407000.0], [398000.0, 408000.0], [399000.0, 408000.0], [399000.0, 407000.0]]]}}, {"id": "2341", "type": "Feature", "properties": {"easting": 432500.0, "northing": 407500.0, "gridsq": "X432Y407", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 407000.0], [432000.0, 407000.0], [432000.0, 408000.0], [433000.0, 408000.0], [433000.0, 407000.0]]]}}, {"id": "2342", "type": "Feature", "properties": {"easting": 434500.0, "northing": 407500.0, "gridsq": "X434Y407", "numresp": 15, "numpeople": 35.1, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 407000.0], [434000.0, 407000.0], [434000.0, 408000.0], [435000.0, 408000.0], [435000.0, 407000.0]]]}}, {"id": "2343", "type": "Feature", "properties": {"easting": 439500.0, "northing": 407500.0, "gridsq": "X439Y407", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[440000.0, 407000.0], [439000.0, 407000.0], [439000.0, 408000.0], [440000.0, 408000.0], [440000.0, 407000.0]]]}}, {"id": "2344", "type": "Feature", "properties": {"easting": 527500.0, "northing": 407500.0, "gridsq": "X527Y407", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[528000.0, 407000.0], [527000.0, 407000.0], [527000.0, 408000.0], [528000.0, 408000.0], [528000.0, 407000.0]]]}}, {"id": "2345", "type": "Feature", "properties": {"easting": 530500.0, "northing": 407500.0, "gridsq": "X530Y407", "numresp": 69, "numpeople": 161.46, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[531000.0, 407000.0], [530000.0, 407000.0], [530000.0, 408000.0], [531000.0, 408000.0], [531000.0, 407000.0]]]}}, {"id": "2346", "type": "Feature", "properties": {"easting": 330500.0, "northing": 408500.0, "gridsq": "X330Y408", "numresp": 100, "numpeople": 234.0, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 408000.0], [330000.0, 408000.0], [330000.0, 409000.0], [331000.0, 409000.0], [331000.0, 408000.0]]]}}, {"id": "2347", "type": "Feature", "properties": {"easting": 341500.0, "northing": 408500.0, "gridsq": "X341Y408", "numresp": 99, "numpeople": 231.66, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[342000.0, 408000.0], [341000.0, 408000.0], [341000.0, 409000.0], [342000.0, 409000.0], [342000.0, 408000.0]]]}}, {"id": "2348", "type": "Feature", "properties": {"easting": 370500.0, "northing": 408500.0, "gridsq": "X370Y408", "numresp": 108, "numpeople": 252.72, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[371000.0, 408000.0], [370000.0, 408000.0], [370000.0, 409000.0], [371000.0, 409000.0], [371000.0, 408000.0]]]}}, {"id": "2349", "type": "Feature", "properties": {"easting": 375500.0, "northing": 408500.0, "gridsq": "X375Y408", "numresp": 88, "numpeople": 205.92, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[376000.0, 408000.0], [375000.0, 408000.0], [375000.0, 409000.0], [376000.0, 409000.0], [376000.0, 408000.0]]]}}, {"id": "2350", "type": "Feature", "properties": {"easting": 391500.0, "northing": 408500.0, "gridsq": "X391Y408", "numresp": 102, "numpeople": 238.68, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[392000.0, 408000.0], [391000.0, 408000.0], [391000.0, 409000.0], [392000.0, 409000.0], [392000.0, 408000.0]]]}}, {"id": "2351", "type": "Feature", "properties": {"easting": 394500.0, "northing": 408500.0, "gridsq": "X394Y408", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 408000.0], [394000.0, 408000.0], [394000.0, 409000.0], [395000.0, 409000.0], [395000.0, 408000.0]]]}}, {"id": "2352", "type": "Feature", "properties": {"easting": 414500.0, "northing": 408500.0, "gridsq": "X414Y408", "numresp": 18, "numpeople": 42.12, "numkeys": 0, "numnonresp": 38, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 408000.0], [414000.0, 408000.0], [414000.0, 409000.0], [415000.0, 409000.0], [415000.0, 408000.0]]]}}, {"id": "2353", "type": "Feature", "properties": {"easting": 422500.0, "northing": 408500.0, "gridsq": "X422Y408", "numresp": 16, "numpeople": 37.44, "numkeys": 0, "numnonresp": 47, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[423000.0, 408000.0], [422000.0, 408000.0], [422000.0, 409000.0], [423000.0, 409000.0], [423000.0, 408000.0]]]}}, {"id": "2354", "type": "Feature", "properties": {"easting": 437500.0, "northing": 408500.0, "gridsq": "X437Y408", "numresp": 20, "numpeople": 46.8, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[438000.0, 408000.0], [437000.0, 408000.0], [437000.0, 409000.0], [438000.0, 409000.0], [438000.0, 408000.0]]]}}, {"id": "2355", "type": "Feature", "properties": {"easting": 487500.0, "northing": 408500.0, "gridsq": "X487Y408", "numresp": 136, "numpeople": 318.24, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 408000.0], [487000.0, 408000.0], [487000.0, 409000.0], [488000.0, 409000.0], [488000.0, 408000.0]]]}}, {"id": "2356", "type": "Feature", "properties": {"easting": 490500.0, "northing": 408500.0, "gridsq": "X490Y408", "numresp": 112, "numpeople": 262.08, "numkeys": 0, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[491000.0, 408000.0], [490000.0, 408000.0], [490000.0, 409000.0], [491000.0, 409000.0], [491000.0, 408000.0]]]}}, {"id": "2357", "type": "Feature", "properties": {"easting": 491500.0, "northing": 408500.0, "gridsq": "X491Y408", "numresp": 120, "numpeople": 280.8, "numkeys": 4, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[492000.0, 408000.0], [491000.0, 408000.0], [491000.0, 409000.0], [492000.0, 409000.0], [492000.0, 408000.0]]]}}, {"id": "2358", "type": "Feature", "properties": {"easting": 525500.0, "northing": 408500.0, "gridsq": "X525Y408", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[526000.0, 408000.0], [525000.0, 408000.0], [525000.0, 409000.0], [526000.0, 409000.0], [526000.0, 408000.0]]]}}, {"id": "2359", "type": "Feature", "properties": {"easting": 371500.0, "northing": 409500.0, "gridsq": "X371Y409", "numresp": 15, "numpeople": 35.1, "numkeys": 3, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 409000.0], [371000.0, 409000.0], [371000.0, 410000.0], [372000.0, 410000.0], [372000.0, 409000.0]]]}}, {"id": "2360", "type": "Feature", "properties": {"easting": 375500.0, "northing": 409500.0, "gridsq": "X375Y409", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[376000.0, 409000.0], [375000.0, 409000.0], [375000.0, 410000.0], [376000.0, 410000.0], [376000.0, 409000.0]]]}}, {"id": "2361", "type": "Feature", "properties": {"easting": 394500.0, "northing": 409500.0, "gridsq": "X394Y409", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 409000.0], [394000.0, 409000.0], [394000.0, 410000.0], [395000.0, 410000.0], [395000.0, 409000.0]]]}}, {"id": "2362", "type": "Feature", "properties": {"easting": 435500.0, "northing": 409500.0, "gridsq": "X435Y409", "numresp": 26, "numpeople": 60.84, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 409000.0], [435000.0, 409000.0], [435000.0, 410000.0], [436000.0, 410000.0], [436000.0, 409000.0]]]}}, {"id": "2363", "type": "Feature", "properties": {"easting": 440500.0, "northing": 409500.0, "gridsq": "X440Y409", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[441000.0, 409000.0], [440000.0, 409000.0], [440000.0, 410000.0], [441000.0, 410000.0], [441000.0, 409000.0]]]}}, {"id": "2364", "type": "Feature", "properties": {"easting": 526500.0, "northing": 409500.0, "gridsq": "X526Y409", "numresp": 30, "numpeople": 70.2, "numkeys": 3, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 409000.0], [526000.0, 409000.0], [526000.0, 410000.0], [527000.0, 410000.0], [527000.0, 409000.0]]]}}, {"id": "2365", "type": "Feature", "properties": {"easting": 362500.0, "northing": 410500.0, "gridsq": "X362Y410", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[363000.0, 410000.0], [362000.0, 410000.0], [362000.0, 411000.0], [363000.0, 411000.0], [363000.0, 410000.0]]]}}, {"id": "2366", "type": "Feature", "properties": {"easting": 371500.0, "northing": 410500.0, "gridsq": "X371Y410", "numresp": 33, "numpeople": 77.22, "numkeys": 3, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 410000.0], [371000.0, 410000.0], [371000.0, 411000.0], [372000.0, 411000.0], [372000.0, 410000.0]]]}}, {"id": "2367", "type": "Feature", "properties": {"easting": 380500.0, "northing": 410500.0, "gridsq": "X380Y410", "numresp": 3, "numpeople": 7.02, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[381000.0, 410000.0], [380000.0, 410000.0], [380000.0, 411000.0], [381000.0, 411000.0], [381000.0, 410000.0]]]}}, {"id": "2368", "type": "Feature", "properties": {"easting": 394500.0, "northing": 410500.0, "gridsq": "X394Y410", "numresp": 159, "numpeople": 372.06, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 410000.0], [394000.0, 410000.0], [394000.0, 411000.0], [395000.0, 411000.0], [395000.0, 410000.0]]]}}, {"id": "2369", "type": "Feature", "properties": {"easting": 410500.0, "northing": 410500.0, "gridsq": "X410Y410", "numresp": 26, "numpeople": 60.84, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[411000.0, 410000.0], [410000.0, 410000.0], [410000.0, 411000.0], [411000.0, 411000.0], [411000.0, 410000.0]]]}}, {"id": "2370", "type": "Feature", "properties": {"easting": 424500.0, "northing": 410500.0, "gridsq": "X424Y410", "numresp": 2, "numpeople": 4.68, "numkeys": 0, "numnonresp": 80, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 410000.0], [424000.0, 410000.0], [424000.0, 411000.0], [425000.0, 411000.0], [425000.0, 410000.0]]]}}, {"id": "2371", "type": "Feature", "properties": {"easting": 526500.0, "northing": 410500.0, "gridsq": "X526Y410", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[527000.0, 410000.0], [526000.0, 410000.0], [526000.0, 411000.0], [527000.0, 411000.0], [527000.0, 410000.0]]]}}, {"id": "2372", "type": "Feature", "properties": {"easting": 330500.0, "northing": 411500.0, "gridsq": "X330Y411", "numresp": 54, "numpeople": 126.36, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 411000.0], [330000.0, 411000.0], [330000.0, 412000.0], [331000.0, 412000.0], [331000.0, 411000.0]]]}}, {"id": "2373", "type": "Feature", "properties": {"easting": 331500.0, "northing": 411500.0, "gridsq": "X331Y411", "numresp": 79, "numpeople": 184.86, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 411000.0], [331000.0, 411000.0], [331000.0, 412000.0], [332000.0, 412000.0], [332000.0, 411000.0]]]}}, {"id": "2374", "type": "Feature", "properties": {"easting": 363500.0, "northing": 411500.0, "gridsq": "X363Y411", "numresp": 132, "numpeople": 308.88, "numkeys": 2, "numnonresp": 89, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[364000.0, 411000.0], [363000.0, 411000.0], [363000.0, 412000.0], [364000.0, 412000.0], [364000.0, 411000.0]]]}}, {"id": "2375", "type": "Feature", "properties": {"easting": 370500.0, "northing": 411500.0, "gridsq": "X370Y411", "numresp": 24, "numpeople": 56.16, "numkeys": 0, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[371000.0, 411000.0], [370000.0, 411000.0], [370000.0, 412000.0], [371000.0, 412000.0], [371000.0, 411000.0]]]}}, {"id": "2376", "type": "Feature", "properties": {"easting": 371500.0, "northing": 411500.0, "gridsq": "X371Y411", "numresp": 42, "numpeople": 98.28, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 411000.0], [371000.0, 411000.0], [371000.0, 412000.0], [372000.0, 412000.0], [372000.0, 411000.0]]]}}, {"id": "2377", "type": "Feature", "properties": {"easting": 378500.0, "northing": 411500.0, "gridsq": "X378Y411", "numresp": 57, "numpeople": 133.38, "numkeys": 1, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[379000.0, 411000.0], [378000.0, 411000.0], [378000.0, 412000.0], [379000.0, 412000.0], [379000.0, 411000.0]]]}}, {"id": "2378", "type": "Feature", "properties": {"easting": 380500.0, "northing": 411500.0, "gridsq": "X380Y411", "numresp": 6, "numpeople": 14.04, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[381000.0, 411000.0], [380000.0, 411000.0], [380000.0, 412000.0], [381000.0, 412000.0], [381000.0, 411000.0]]]}}, {"id": "2379", "type": "Feature", "properties": {"easting": 388500.0, "northing": 411500.0, "gridsq": "X388Y411", "numresp": 32, "numpeople": 74.88, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 411000.0], [388000.0, 411000.0], [388000.0, 412000.0], [389000.0, 412000.0], [389000.0, 411000.0]]]}}, {"id": "2380", "type": "Feature", "properties": {"easting": 390500.0, "northing": 411500.0, "gridsq": "X390Y411", "numresp": 153, "numpeople": 358.02, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 411000.0], [390000.0, 411000.0], [390000.0, 412000.0], [391000.0, 412000.0], [391000.0, 411000.0]]]}}, {"id": "2381", "type": "Feature", "properties": {"easting": 404500.0, "northing": 411500.0, "gridsq": "X404Y411", "numresp": 152, "numpeople": 355.68, "numkeys": 5, "numnonresp": 41, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 411000.0], [404000.0, 411000.0], [404000.0, 412000.0], [405000.0, 412000.0], [405000.0, 411000.0]]]}}, {"id": "2382", "type": "Feature", "properties": {"easting": 445500.0, "northing": 411500.0, "gridsq": "X445Y411", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[446000.0, 411000.0], [445000.0, 411000.0], [445000.0, 412000.0], [446000.0, 412000.0], [446000.0, 411000.0]]]}}, {"id": "2383", "type": "Feature", "properties": {"easting": 489500.0, "northing": 411500.0, "gridsq": "X489Y411", "numresp": 49, "numpeople": 114.66, "numkeys": 3, "numnonresp": 113, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 411000.0], [489000.0, 411000.0], [489000.0, 412000.0], [490000.0, 412000.0], [490000.0, 411000.0]]]}}, {"id": "2384", "type": "Feature", "properties": {"easting": 490500.0, "northing": 411500.0, "gridsq": "X490Y411", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[491000.0, 411000.0], [490000.0, 411000.0], [490000.0, 412000.0], [491000.0, 412000.0], [491000.0, 411000.0]]]}}, {"id": "2385", "type": "Feature", "properties": {"easting": 329500.0, "northing": 412500.0, "gridsq": "X329Y412", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[330000.0, 412000.0], [329000.0, 412000.0], [329000.0, 413000.0], [330000.0, 413000.0], [330000.0, 412000.0]]]}}, {"id": "2386", "type": "Feature", "properties": {"easting": 331500.0, "northing": 412500.0, "gridsq": "X331Y412", "numresp": 102, "numpeople": 238.68, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 412000.0], [331000.0, 412000.0], [331000.0, 413000.0], [332000.0, 413000.0], [332000.0, 412000.0]]]}}, {"id": "2387", "type": "Feature", "properties": {"easting": 392500.0, "northing": 412500.0, "gridsq": "X392Y412", "numresp": 65, "numpeople": 152.1, "numkeys": 3, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 412000.0], [392000.0, 412000.0], [392000.0, 413000.0], [393000.0, 413000.0], [393000.0, 412000.0]]]}}, {"id": "2388", "type": "Feature", "properties": {"easting": 439500.0, "northing": 412500.0, "gridsq": "X439Y412", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[440000.0, 412000.0], [439000.0, 412000.0], [439000.0, 413000.0], [440000.0, 413000.0], [440000.0, 412000.0]]]}}, {"id": "2389", "type": "Feature", "properties": {"easting": 371500.0, "northing": 413500.0, "gridsq": "X371Y413", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[372000.0, 413000.0], [371000.0, 413000.0], [371000.0, 414000.0], [372000.0, 414000.0], [372000.0, 413000.0]]]}}, {"id": "2390", "type": "Feature", "properties": {"easting": 389500.0, "northing": 413500.0, "gridsq": "X389Y413", "numresp": 29, "numpeople": 67.86, "numkeys": 1, "numnonresp": 87, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[390000.0, 413000.0], [389000.0, 413000.0], [389000.0, 414000.0], [390000.0, 414000.0], [390000.0, 413000.0]]]}}, {"id": "2391", "type": "Feature", "properties": {"easting": 407500.0, "northing": 413500.0, "gridsq": "X407Y413", "numresp": 1, "numpeople": 2.34, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 413000.0], [407000.0, 413000.0], [407000.0, 414000.0], [408000.0, 414000.0], [408000.0, 413000.0]]]}}, {"id": "2392", "type": "Feature", "properties": {"easting": 333500.0, "northing": 414500.0, "gridsq": "X333Y414", "numresp": 96, "numpeople": 224.64, "numkeys": 0, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 414000.0], [333000.0, 414000.0], [333000.0, 415000.0], [334000.0, 415000.0], [334000.0, 414000.0]]]}}, {"id": "2393", "type": "Feature", "properties": {"easting": 390500.0, "northing": 414500.0, "gridsq": "X390Y414", "numresp": 8, "numpeople": 18.72, "numkeys": 3, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 414000.0], [390000.0, 414000.0], [390000.0, 415000.0], [391000.0, 415000.0], [391000.0, 414000.0]]]}}, {"id": "2394", "type": "Feature", "properties": {"easting": 332500.0, "northing": 415500.0, "gridsq": "X332Y415", "numresp": 290, "numpeople": 678.6, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 415000.0], [332000.0, 415000.0], [332000.0, 416000.0], [333000.0, 416000.0], [333000.0, 415000.0]]]}}, {"id": "2395", "type": "Feature", "properties": {"easting": 333500.0, "northing": 415500.0, "gridsq": "X333Y415", "numresp": 128, "numpeople": 299.52, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 415000.0], [333000.0, 415000.0], [333000.0, 416000.0], [334000.0, 416000.0], [334000.0, 415000.0]]]}}, {"id": "2396", "type": "Feature", "properties": {"easting": 335500.0, "northing": 415500.0, "gridsq": "X335Y415", "numresp": 93, "numpeople": 217.62, "numkeys": 1, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 415000.0], [335000.0, 415000.0], [335000.0, 416000.0], [336000.0, 416000.0], [336000.0, 415000.0]]]}}, {"id": "2397", "type": "Feature", "properties": {"easting": 411500.0, "northing": 415500.0, "gridsq": "X411Y415", "numresp": 30, "numpeople": 70.2, "numkeys": 2, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 415000.0], [411000.0, 415000.0], [411000.0, 416000.0], [412000.0, 416000.0], [412000.0, 415000.0]]]}}, {"id": "2398", "type": "Feature", "properties": {"easting": 332500.0, "northing": 416500.0, "gridsq": "X332Y416", "numresp": 271, "numpeople": 634.14, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 416000.0], [332000.0, 416000.0], [332000.0, 417000.0], [333000.0, 417000.0], [333000.0, 416000.0]]]}}, {"id": "2399", "type": "Feature", "properties": {"easting": 333500.0, "northing": 416500.0, "gridsq": "X333Y416", "numresp": 551, "numpeople": 1289.34, "numkeys": 7, "numnonresp": 54, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 416000.0], [333000.0, 416000.0], [333000.0, 417000.0], [334000.0, 417000.0], [334000.0, 416000.0]]]}}, {"id": "2400", "type": "Feature", "properties": {"easting": 334500.0, "northing": 416500.0, "gridsq": "X334Y416", "numresp": 211, "numpeople": 493.74, "numkeys": 5, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 416000.0], [334000.0, 416000.0], [334000.0, 417000.0], [335000.0, 417000.0], [335000.0, 416000.0]]]}}, {"id": "2401", "type": "Feature", "properties": {"easting": 335500.0, "northing": 416500.0, "gridsq": "X335Y416", "numresp": 276, "numpeople": 645.84, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 416000.0], [335000.0, 416000.0], [335000.0, 417000.0], [336000.0, 417000.0], [336000.0, 416000.0]]]}}, {"id": "2402", "type": "Feature", "properties": {"easting": 336500.0, "northing": 416500.0, "gridsq": "X336Y416", "numresp": 123, "numpeople": 287.82, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 416000.0], [336000.0, 416000.0], [336000.0, 417000.0], [337000.0, 417000.0], [337000.0, 416000.0]]]}}, {"id": "2403", "type": "Feature", "properties": {"easting": 378500.0, "northing": 416500.0, "gridsq": "X378Y416", "numresp": 93, "numpeople": 217.62, "numkeys": 0, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[379000.0, 416000.0], [378000.0, 416000.0], [378000.0, 417000.0], [379000.0, 417000.0], [379000.0, 416000.0]]]}}, {"id": "2404", "type": "Feature", "properties": {"easting": 379500.0, "northing": 416500.0, "gridsq": "X379Y416", "numresp": 70, "numpeople": 163.8, "numkeys": 0, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[380000.0, 416000.0], [379000.0, 416000.0], [379000.0, 417000.0], [380000.0, 417000.0], [380000.0, 416000.0]]]}}, {"id": "2405", "type": "Feature", "properties": {"easting": 393500.0, "northing": 416500.0, "gridsq": "X393Y416", "numresp": 313, "numpeople": 732.42, "numkeys": 2, "numnonresp": 49, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 416000.0], [393000.0, 416000.0], [393000.0, 417000.0], [394000.0, 417000.0], [394000.0, 416000.0]]]}}, {"id": "2406", "type": "Feature", "properties": {"easting": 411500.0, "northing": 416500.0, "gridsq": "X411Y416", "numresp": 85, "numpeople": 198.9, "numkeys": 1, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 416000.0], [411000.0, 416000.0], [411000.0, 417000.0], [412000.0, 417000.0], [412000.0, 416000.0]]]}}, {"id": "2407", "type": "Feature", "properties": {"easting": 412500.0, "northing": 416500.0, "gridsq": "X412Y416", "numresp": 17, "numpeople": 39.78, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[413000.0, 416000.0], [412000.0, 416000.0], [412000.0, 417000.0], [413000.0, 417000.0], [413000.0, 416000.0]]]}}, {"id": "2408", "type": "Feature", "properties": {"easting": 413500.0, "northing": 416500.0, "gridsq": "X413Y416", "numresp": 24, "numpeople": 56.16, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[414000.0, 416000.0], [413000.0, 416000.0], [413000.0, 417000.0], [414000.0, 417000.0], [414000.0, 416000.0]]]}}, {"id": "2409", "type": "Feature", "properties": {"easting": 417500.0, "northing": 416500.0, "gridsq": "X417Y416", "numresp": 53, "numpeople": 124.02, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[418000.0, 416000.0], [417000.0, 416000.0], [417000.0, 417000.0], [418000.0, 417000.0], [418000.0, 416000.0]]]}}, {"id": "2410", "type": "Feature", "properties": {"easting": 333500.0, "northing": 417500.0, "gridsq": "X333Y417", "numresp": 399, "numpeople": 933.66, "numkeys": 7, "numnonresp": 166, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 417000.0], [333000.0, 417000.0], [333000.0, 418000.0], [334000.0, 418000.0], [334000.0, 417000.0]]]}}, {"id": "2411", "type": "Feature", "properties": {"easting": 334500.0, "northing": 417500.0, "gridsq": "X334Y417", "numresp": 462, "numpeople": 1081.08, "numkeys": 6, "numnonresp": 97, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 417000.0], [334000.0, 417000.0], [334000.0, 418000.0], [335000.0, 418000.0], [335000.0, 417000.0]]]}}, {"id": "2412", "type": "Feature", "properties": {"easting": 335500.0, "northing": 417500.0, "gridsq": "X335Y417", "numresp": 202, "numpeople": 472.68, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 417000.0], [335000.0, 417000.0], [335000.0, 418000.0], [336000.0, 418000.0], [336000.0, 417000.0]]]}}, {"id": "2413", "type": "Feature", "properties": {"easting": 336500.0, "northing": 417500.0, "gridsq": "X336Y417", "numresp": 217, "numpeople": 507.78, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 417000.0], [336000.0, 417000.0], [336000.0, 418000.0], [337000.0, 418000.0], [337000.0, 417000.0]]]}}, {"id": "2414", "type": "Feature", "properties": {"easting": 358500.0, "northing": 417500.0, "gridsq": "X358Y417", "numresp": 80, "numpeople": 187.2, "numkeys": 2, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[359000.0, 417000.0], [358000.0, 417000.0], [358000.0, 418000.0], [359000.0, 418000.0], [359000.0, 417000.0]]]}}, {"id": "2415", "type": "Feature", "properties": {"easting": 378500.0, "northing": 417500.0, "gridsq": "X378Y417", "numresp": 6, "numpeople": 14.04, "numkeys": 1, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[379000.0, 417000.0], [378000.0, 417000.0], [378000.0, 418000.0], [379000.0, 418000.0], [379000.0, 417000.0]]]}}, {"id": "2416", "type": "Feature", "properties": {"easting": 379500.0, "northing": 417500.0, "gridsq": "X379Y417", "numresp": 119, "numpeople": 278.46, "numkeys": 2, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[380000.0, 417000.0], [379000.0, 417000.0], [379000.0, 418000.0], [380000.0, 418000.0], [380000.0, 417000.0]]]}}, {"id": "2417", "type": "Feature", "properties": {"easting": 410500.0, "northing": 417500.0, "gridsq": "X410Y417", "numresp": 15, "numpeople": 35.1, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[411000.0, 417000.0], [410000.0, 417000.0], [410000.0, 418000.0], [411000.0, 418000.0], [411000.0, 417000.0]]]}}, {"id": "2418", "type": "Feature", "properties": {"easting": 412500.0, "northing": 417500.0, "gridsq": "X412Y417", "numresp": 15, "numpeople": 35.1, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[413000.0, 417000.0], [412000.0, 417000.0], [412000.0, 418000.0], [413000.0, 418000.0], [413000.0, 417000.0]]]}}, {"id": "2419", "type": "Feature", "properties": {"easting": 414500.0, "northing": 417500.0, "gridsq": "X414Y417", "numresp": 66, "numpeople": 154.44, "numkeys": 3, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 417000.0], [414000.0, 417000.0], [414000.0, 418000.0], [415000.0, 418000.0], [415000.0, 417000.0]]]}}, {"id": "2420", "type": "Feature", "properties": {"easting": 416500.0, "northing": 417500.0, "gridsq": "X416Y417", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 417000.0], [416000.0, 417000.0], [416000.0, 418000.0], [417000.0, 418000.0], [417000.0, 417000.0]]]}}, {"id": "2421", "type": "Feature", "properties": {"easting": 417500.0, "northing": 417500.0, "gridsq": "X417Y417", "numresp": 35, "numpeople": 81.9, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[418000.0, 417000.0], [417000.0, 417000.0], [417000.0, 418000.0], [418000.0, 418000.0], [418000.0, 417000.0]]]}}, {"id": "2422", "type": "Feature", "properties": {"easting": 333500.0, "northing": 418500.0, "gridsq": "X333Y418", "numresp": 158, "numpeople": 369.72, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 418000.0], [333000.0, 418000.0], [333000.0, 419000.0], [334000.0, 419000.0], [334000.0, 418000.0]]]}}, {"id": "2423", "type": "Feature", "properties": {"easting": 334500.0, "northing": 418500.0, "gridsq": "X334Y418", "numresp": 500, "numpeople": 1170.0, "numkeys": 11, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[335000.0, 418000.0], [334000.0, 418000.0], [334000.0, 419000.0], [335000.0, 419000.0], [335000.0, 418000.0]]]}}, {"id": "2424", "type": "Feature", "properties": {"easting": 335500.0, "northing": 418500.0, "gridsq": "X335Y418", "numresp": 174, "numpeople": 407.16, "numkeys": 4, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 418000.0], [335000.0, 418000.0], [335000.0, 419000.0], [336000.0, 419000.0], [336000.0, 418000.0]]]}}, {"id": "2425", "type": "Feature", "properties": {"easting": 374500.0, "northing": 418500.0, "gridsq": "X374Y418", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[375000.0, 418000.0], [374000.0, 418000.0], [374000.0, 419000.0], [375000.0, 419000.0], [375000.0, 418000.0]]]}}, {"id": "2426", "type": "Feature", "properties": {"easting": 388500.0, "northing": 418500.0, "gridsq": "X388Y418", "numresp": 130, "numpeople": 304.2, "numkeys": 2, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 418000.0], [388000.0, 418000.0], [388000.0, 419000.0], [389000.0, 419000.0], [389000.0, 418000.0]]]}}, {"id": "2427", "type": "Feature", "properties": {"easting": 414500.0, "northing": 418500.0, "gridsq": "X414Y418", "numresp": 23, "numpeople": 53.82, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 418000.0], [414000.0, 418000.0], [414000.0, 419000.0], [415000.0, 419000.0], [415000.0, 418000.0]]]}}, {"id": "2428", "type": "Feature", "properties": {"easting": 335500.0, "northing": 419500.0, "gridsq": "X335Y419", "numresp": 102, "numpeople": 238.68, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[336000.0, 419000.0], [335000.0, 419000.0], [335000.0, 420000.0], [336000.0, 420000.0], [336000.0, 419000.0]]]}}, {"id": "2429", "type": "Feature", "properties": {"easting": 336500.0, "northing": 419500.0, "gridsq": "X336Y419", "numresp": 325, "numpeople": 760.5, "numkeys": 4, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 419000.0], [336000.0, 419000.0], [336000.0, 420000.0], [337000.0, 420000.0], [337000.0, 419000.0]]]}}, {"id": "2430", "type": "Feature", "properties": {"easting": 337500.0, "northing": 419500.0, "gridsq": "X337Y419", "numresp": 186, "numpeople": 435.24, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 419000.0], [337000.0, 419000.0], [337000.0, 420000.0], [338000.0, 420000.0], [338000.0, 419000.0]]]}}, {"id": "2431", "type": "Feature", "properties": {"easting": 355500.0, "northing": 419500.0, "gridsq": "X355Y419", "numresp": 10, "numpeople": 23.4, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[356000.0, 419000.0], [355000.0, 419000.0], [355000.0, 420000.0], [356000.0, 420000.0], [356000.0, 419000.0]]]}}, {"id": "2432", "type": "Feature", "properties": {"easting": 388500.0, "northing": 419500.0, "gridsq": "X388Y419", "numresp": 24, "numpeople": 56.16, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[389000.0, 419000.0], [388000.0, 419000.0], [388000.0, 420000.0], [389000.0, 420000.0], [389000.0, 419000.0]]]}}, {"id": "2433", "type": "Feature", "properties": {"easting": 404500.0, "northing": 419500.0, "gridsq": "X404Y419", "numresp": 16, "numpeople": 37.44, "numkeys": 0, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 419000.0], [404000.0, 419000.0], [404000.0, 420000.0], [405000.0, 420000.0], [405000.0, 419000.0]]]}}, {"id": "2434", "type": "Feature", "properties": {"easting": 414500.0, "northing": 419500.0, "gridsq": "X414Y419", "numresp": 7, "numpeople": 16.38, "numkeys": 3, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 419000.0], [414000.0, 419000.0], [414000.0, 420000.0], [415000.0, 420000.0], [415000.0, 419000.0]]]}}, {"id": "2435", "type": "Feature", "properties": {"easting": 336500.0, "northing": 420500.0, "gridsq": "X336Y420", "numresp": 171, "numpeople": 400.14, "numkeys": 4, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[337000.0, 420000.0], [336000.0, 420000.0], [336000.0, 421000.0], [337000.0, 421000.0], [337000.0, 420000.0]]]}}, {"id": "2436", "type": "Feature", "properties": {"easting": 337500.0, "northing": 420500.0, "gridsq": "X337Y420", "numresp": 176, "numpeople": 411.84, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 420000.0], [337000.0, 420000.0], [337000.0, 421000.0], [338000.0, 421000.0], [338000.0, 420000.0]]]}}, {"id": "2437", "type": "Feature", "properties": {"easting": 406500.0, "northing": 420500.0, "gridsq": "X406Y420", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 420000.0], [406000.0, 420000.0], [406000.0, 421000.0], [407000.0, 421000.0], [407000.0, 420000.0]]]}}, {"id": "2438", "type": "Feature", "properties": {"easting": 411500.0, "northing": 420500.0, "gridsq": "X411Y420", "numresp": 66, "numpeople": 154.44, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 420000.0], [411000.0, 420000.0], [411000.0, 421000.0], [412000.0, 421000.0], [412000.0, 420000.0]]]}}, {"id": "2439", "type": "Feature", "properties": {"easting": 417500.0, "northing": 420500.0, "gridsq": "X417Y420", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[418000.0, 420000.0], [417000.0, 420000.0], [417000.0, 421000.0], [418000.0, 421000.0], [418000.0, 420000.0]]]}}, {"id": "2440", "type": "Feature", "properties": {"easting": 419500.0, "northing": 420500.0, "gridsq": "X419Y420", "numresp": 48, "numpeople": 112.32, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[420000.0, 420000.0], [419000.0, 420000.0], [419000.0, 421000.0], [420000.0, 421000.0], [420000.0, 420000.0]]]}}, {"id": "2441", "type": "Feature", "properties": {"easting": 421500.0, "northing": 420500.0, "gridsq": "X421Y420", "numresp": 30, "numpeople": 70.2, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[422000.0, 420000.0], [421000.0, 420000.0], [421000.0, 421000.0], [422000.0, 421000.0], [422000.0, 420000.0]]]}}, {"id": "2442", "type": "Feature", "properties": {"easting": 431500.0, "northing": 420500.0, "gridsq": "X431Y420", "numresp": 130, "numpeople": 304.2, "numkeys": 0, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 420000.0], [431000.0, 420000.0], [431000.0, 421000.0], [432000.0, 421000.0], [432000.0, 420000.0]]]}}, {"id": "2443", "type": "Feature", "properties": {"easting": 432500.0, "northing": 420500.0, "gridsq": "X432Y420", "numresp": 29, "numpeople": 67.86, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 420000.0], [432000.0, 420000.0], [432000.0, 421000.0], [433000.0, 421000.0], [433000.0, 420000.0]]]}}, {"id": "2444", "type": "Feature", "properties": {"easting": 433500.0, "northing": 420500.0, "gridsq": "X433Y420", "numresp": 23, "numpeople": 53.82, "numkeys": 1, "numnonresp": 62, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 420000.0], [433000.0, 420000.0], [433000.0, 421000.0], [434000.0, 421000.0], [434000.0, 420000.0]]]}}, {"id": "2445", "type": "Feature", "properties": {"easting": 369500.0, "northing": 421500.0, "gridsq": "X369Y421", "numresp": 60, "numpeople": 140.4, "numkeys": 4, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 421000.0], [369000.0, 421000.0], [369000.0, 422000.0], [370000.0, 422000.0], [370000.0, 421000.0]]]}}, {"id": "2446", "type": "Feature", "properties": {"easting": 380500.0, "northing": 421500.0, "gridsq": "X380Y421", "numresp": 7, "numpeople": 16.38, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[381000.0, 421000.0], [380000.0, 421000.0], [380000.0, 422000.0], [381000.0, 422000.0], [381000.0, 421000.0]]]}}, {"id": "2447", "type": "Feature", "properties": {"easting": 385500.0, "northing": 421500.0, "gridsq": "X385Y421", "numresp": 55, "numpeople": 128.7, "numkeys": 3, "numnonresp": 53, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 421000.0], [385000.0, 421000.0], [385000.0, 422000.0], [386000.0, 422000.0], [386000.0, 421000.0]]]}}, {"id": "2448", "type": "Feature", "properties": {"easting": 424500.0, "northing": 421500.0, "gridsq": "X424Y421", "numresp": 16, "numpeople": 37.44, "numkeys": 4, "numnonresp": 112, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 421000.0], [424000.0, 421000.0], [424000.0, 422000.0], [425000.0, 422000.0], [425000.0, 421000.0]]]}}, {"id": "2449", "type": "Feature", "properties": {"easting": 433500.0, "northing": 421500.0, "gridsq": "X433Y421", "numresp": 91, "numpeople": 212.94, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 421000.0], [433000.0, 421000.0], [433000.0, 422000.0], [434000.0, 422000.0], [434000.0, 421000.0]]]}}, {"id": "2450", "type": "Feature", "properties": {"easting": 354500.0, "northing": 422500.0, "gridsq": "X354Y422", "numresp": 56, "numpeople": 131.04, "numkeys": 2, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[355000.0, 422000.0], [354000.0, 422000.0], [354000.0, 423000.0], [355000.0, 423000.0], [355000.0, 422000.0]]]}}, {"id": "2451", "type": "Feature", "properties": {"easting": 368500.0, "northing": 422500.0, "gridsq": "X368Y422", "numresp": 28, "numpeople": 65.52, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 422000.0], [368000.0, 422000.0], [368000.0, 423000.0], [369000.0, 423000.0], [369000.0, 422000.0]]]}}, {"id": "2452", "type": "Feature", "properties": {"easting": 369500.0, "northing": 422500.0, "gridsq": "X369Y422", "numresp": 103, "numpeople": 241.02, "numkeys": 1, "numnonresp": 231, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 422000.0], [369000.0, 422000.0], [369000.0, 423000.0], [370000.0, 423000.0], [370000.0, 422000.0]]]}}, {"id": "2453", "type": "Feature", "properties": {"easting": 378500.0, "northing": 422500.0, "gridsq": "X378Y422", "numresp": 29, "numpeople": 67.86, "numkeys": 1, "numnonresp": 58, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[379000.0, 422000.0], [378000.0, 422000.0], [378000.0, 423000.0], [379000.0, 423000.0], [379000.0, 422000.0]]]}}, {"id": "2454", "type": "Feature", "properties": {"easting": 379500.0, "northing": 422500.0, "gridsq": "X379Y422", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[380000.0, 422000.0], [379000.0, 422000.0], [379000.0, 423000.0], [380000.0, 423000.0], [380000.0, 422000.0]]]}}, {"id": "2455", "type": "Feature", "properties": {"easting": 380500.0, "northing": 422500.0, "gridsq": "X380Y422", "numresp": 19, "numpeople": 44.46, "numkeys": 1, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[381000.0, 422000.0], [380000.0, 422000.0], [380000.0, 423000.0], [381000.0, 423000.0], [381000.0, 422000.0]]]}}, {"id": "2456", "type": "Feature", "properties": {"easting": 381500.0, "northing": 422500.0, "gridsq": "X381Y422", "numresp": 22, "numpeople": 51.48, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[382000.0, 422000.0], [381000.0, 422000.0], [381000.0, 423000.0], [382000.0, 423000.0], [382000.0, 422000.0]]]}}, {"id": "2457", "type": "Feature", "properties": {"easting": 383500.0, "northing": 422500.0, "gridsq": "X383Y422", "numresp": 75, "numpeople": 175.5, "numkeys": 1, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[384000.0, 422000.0], [383000.0, 422000.0], [383000.0, 423000.0], [384000.0, 423000.0], [384000.0, 422000.0]]]}}, {"id": "2458", "type": "Feature", "properties": {"easting": 386500.0, "northing": 422500.0, "gridsq": "X386Y422", "numresp": 42, "numpeople": 98.28, "numkeys": 3, "numnonresp": 110, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 422000.0], [386000.0, 422000.0], [386000.0, 423000.0], [387000.0, 423000.0], [387000.0, 422000.0]]]}}, {"id": "2459", "type": "Feature", "properties": {"easting": 393500.0, "northing": 422500.0, "gridsq": "X393Y422", "numresp": 96, "numpeople": 224.64, "numkeys": 3, "numnonresp": 16, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 422000.0], [393000.0, 422000.0], [393000.0, 423000.0], [394000.0, 423000.0], [394000.0, 422000.0]]]}}, {"id": "2460", "type": "Feature", "properties": {"easting": 414500.0, "northing": 422500.0, "gridsq": "X414Y422", "numresp": 49, "numpeople": 114.66, "numkeys": 1, "numnonresp": 106, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 422000.0], [414000.0, 422000.0], [414000.0, 423000.0], [415000.0, 423000.0], [415000.0, 422000.0]]]}}, {"id": "2461", "type": "Feature", "properties": {"easting": 424500.0, "northing": 422500.0, "gridsq": "X424Y422", "numresp": 116, "numpeople": 271.44, "numkeys": 0, "numnonresp": 110, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 422000.0], [424000.0, 422000.0], [424000.0, 423000.0], [425000.0, 423000.0], [425000.0, 422000.0]]]}}, {"id": "2462", "type": "Feature", "properties": {"easting": 503500.0, "northing": 422500.0, "gridsq": "X503Y422", "numresp": 62, "numpeople": 145.08, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[504000.0, 422000.0], [503000.0, 422000.0], [503000.0, 423000.0], [504000.0, 423000.0], [504000.0, 422000.0]]]}}, {"id": "2463", "type": "Feature", "properties": {"easting": 368500.0, "northing": 423500.0, "gridsq": "X368Y423", "numresp": 167, "numpeople": 390.78, "numkeys": 6, "numnonresp": 129, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 423000.0], [368000.0, 423000.0], [368000.0, 424000.0], [369000.0, 424000.0], [369000.0, 423000.0]]]}}, {"id": "2464", "type": "Feature", "properties": {"easting": 378500.0, "northing": 423500.0, "gridsq": "X378Y423", "numresp": 16, "numpeople": 37.44, "numkeys": 0, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[379000.0, 423000.0], [378000.0, 423000.0], [378000.0, 424000.0], [379000.0, 424000.0], [379000.0, 423000.0]]]}}, {"id": "2465", "type": "Feature", "properties": {"easting": 386500.0, "northing": 423500.0, "gridsq": "X386Y423", "numresp": 58, "numpeople": 135.72, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 423000.0], [386000.0, 423000.0], [386000.0, 424000.0], [387000.0, 424000.0], [387000.0, 423000.0]]]}}, {"id": "2466", "type": "Feature", "properties": {"easting": 393500.0, "northing": 423500.0, "gridsq": "X393Y423", "numresp": 203, "numpeople": 475.02, "numkeys": 4, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 423000.0], [393000.0, 423000.0], [393000.0, 424000.0], [394000.0, 424000.0], [394000.0, 423000.0]]]}}, {"id": "2467", "type": "Feature", "properties": {"easting": 421500.0, "northing": 423500.0, "gridsq": "X421Y423", "numresp": 36, "numpeople": 84.24, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[422000.0, 423000.0], [421000.0, 423000.0], [421000.0, 424000.0], [422000.0, 424000.0], [422000.0, 423000.0]]]}}, {"id": "2468", "type": "Feature", "properties": {"easting": 424500.0, "northing": 423500.0, "gridsq": "X424Y423", "numresp": 24, "numpeople": 56.16, "numkeys": 0, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 423000.0], [424000.0, 423000.0], [424000.0, 424000.0], [425000.0, 424000.0], [425000.0, 423000.0]]]}}, {"id": "2469", "type": "Feature", "properties": {"easting": 425500.0, "northing": 423500.0, "gridsq": "X425Y423", "numresp": 5, "numpeople": 11.7, "numkeys": 1, "numnonresp": 44, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[426000.0, 423000.0], [425000.0, 423000.0], [425000.0, 424000.0], [426000.0, 424000.0], [426000.0, 423000.0]]]}}, {"id": "2470", "type": "Feature", "properties": {"easting": 369500.0, "northing": 424500.0, "gridsq": "X369Y424", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 424000.0], [369000.0, 424000.0], [369000.0, 425000.0], [370000.0, 425000.0], [370000.0, 424000.0]]]}}, {"id": "2471", "type": "Feature", "properties": {"easting": 370500.0, "northing": 424500.0, "gridsq": "X370Y424", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[371000.0, 424000.0], [370000.0, 424000.0], [370000.0, 425000.0], [371000.0, 425000.0], [371000.0, 424000.0]]]}}, {"id": "2472", "type": "Feature", "properties": {"easting": 393500.0, "northing": 424500.0, "gridsq": "X393Y424", "numresp": 376, "numpeople": 879.84, "numkeys": 6, "numnonresp": 101, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 424000.0], [393000.0, 424000.0], [393000.0, 425000.0], [394000.0, 425000.0], [394000.0, 424000.0]]]}}, {"id": "2473", "type": "Feature", "properties": {"easting": 394500.0, "northing": 424500.0, "gridsq": "X394Y424", "numresp": 392, "numpeople": 917.28, "numkeys": 8, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[395000.0, 424000.0], [394000.0, 424000.0], [394000.0, 425000.0], [395000.0, 425000.0], [395000.0, 424000.0]]]}}, {"id": "2474", "type": "Feature", "properties": {"easting": 409500.0, "northing": 424500.0, "gridsq": "X409Y424", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[410000.0, 424000.0], [409000.0, 424000.0], [409000.0, 425000.0], [410000.0, 425000.0], [410000.0, 424000.0]]]}}, {"id": "2475", "type": "Feature", "properties": {"easting": 419500.0, "northing": 424500.0, "gridsq": "X419Y424", "numresp": 12, "numpeople": 28.08, "numkeys": 4, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[420000.0, 424000.0], [419000.0, 424000.0], [419000.0, 425000.0], [420000.0, 425000.0], [420000.0, 424000.0]]]}}, {"id": "2476", "type": "Feature", "properties": {"easting": 420500.0, "northing": 424500.0, "gridsq": "X420Y424", "numresp": 22, "numpeople": 51.48, "numkeys": 4, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[421000.0, 424000.0], [420000.0, 424000.0], [420000.0, 425000.0], [421000.0, 425000.0], [421000.0, 424000.0]]]}}, {"id": "2477", "type": "Feature", "properties": {"easting": 423500.0, "northing": 424500.0, "gridsq": "X423Y424", "numresp": 61, "numpeople": 142.74, "numkeys": 0, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[424000.0, 424000.0], [423000.0, 424000.0], [423000.0, 425000.0], [424000.0, 425000.0], [424000.0, 424000.0]]]}}, {"id": "2478", "type": "Feature", "properties": {"easting": 424500.0, "northing": 424500.0, "gridsq": "X424Y424", "numresp": 13, "numpeople": 30.42, "numkeys": 1, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 424000.0], [424000.0, 424000.0], [424000.0, 425000.0], [425000.0, 425000.0], [425000.0, 424000.0]]]}}, {"id": "2479", "type": "Feature", "properties": {"easting": 443500.0, "northing": 424500.0, "gridsq": "X443Y424", "numresp": 25, "numpeople": 58.5, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[444000.0, 424000.0], [443000.0, 424000.0], [443000.0, 425000.0], [444000.0, 425000.0], [444000.0, 424000.0]]]}}, {"id": "2480", "type": "Feature", "properties": {"easting": 448500.0, "northing": 424500.0, "gridsq": "X448Y424", "numresp": 9, "numpeople": 21.06, "numkeys": 0, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 424000.0], [448000.0, 424000.0], [448000.0, 425000.0], [449000.0, 425000.0], [449000.0, 424000.0]]]}}, {"id": "2481", "type": "Feature", "properties": {"easting": 366500.0, "northing": 425500.0, "gridsq": "X366Y425", "numresp": 30, "numpeople": 70.2, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 425000.0], [366000.0, 425000.0], [366000.0, 426000.0], [367000.0, 426000.0], [367000.0, 425000.0]]]}}, {"id": "2482", "type": "Feature", "properties": {"easting": 367500.0, "northing": 425500.0, "gridsq": "X367Y425", "numresp": 38, "numpeople": 88.92, "numkeys": 2, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[368000.0, 425000.0], [367000.0, 425000.0], [367000.0, 426000.0], [368000.0, 426000.0], [368000.0, 425000.0]]]}}, {"id": "2483", "type": "Feature", "properties": {"easting": 368500.0, "northing": 425500.0, "gridsq": "X368Y425", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 61, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 425000.0], [368000.0, 425000.0], [368000.0, 426000.0], [369000.0, 426000.0], [369000.0, 425000.0]]]}}, {"id": "2484", "type": "Feature", "properties": {"easting": 381500.0, "northing": 425500.0, "gridsq": "X381Y425", "numresp": 29, "numpeople": 67.86, "numkeys": 3, "numnonresp": 51, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[382000.0, 425000.0], [381000.0, 425000.0], [381000.0, 426000.0], [382000.0, 426000.0], [382000.0, 425000.0]]]}}, {"id": "2485", "type": "Feature", "properties": {"easting": 392500.0, "northing": 425500.0, "gridsq": "X392Y425", "numresp": 243, "numpeople": 568.62, "numkeys": 0, "numnonresp": 47, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[393000.0, 425000.0], [392000.0, 425000.0], [392000.0, 426000.0], [393000.0, 426000.0], [393000.0, 425000.0]]]}}, {"id": "2486", "type": "Feature", "properties": {"easting": 408500.0, "northing": 425500.0, "gridsq": "X408Y425", "numresp": 16, "numpeople": 37.44, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 425000.0], [408000.0, 425000.0], [408000.0, 426000.0], [409000.0, 426000.0], [409000.0, 425000.0]]]}}, {"id": "2487", "type": "Feature", "properties": {"easting": 409500.0, "northing": 425500.0, "gridsq": "X409Y425", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 44, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[410000.0, 425000.0], [409000.0, 425000.0], [409000.0, 426000.0], [410000.0, 426000.0], [410000.0, 425000.0]]]}}, {"id": "2488", "type": "Feature", "properties": {"easting": 414500.0, "northing": 425500.0, "gridsq": "X414Y425", "numresp": 18, "numpeople": 42.12, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 425000.0], [414000.0, 425000.0], [414000.0, 426000.0], [415000.0, 426000.0], [415000.0, 425000.0]]]}}, {"id": "2489", "type": "Feature", "properties": {"easting": 419500.0, "northing": 425500.0, "gridsq": "X419Y425", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[420000.0, 425000.0], [419000.0, 425000.0], [419000.0, 426000.0], [420000.0, 426000.0], [420000.0, 425000.0]]]}}, {"id": "2490", "type": "Feature", "properties": {"easting": 422500.0, "northing": 425500.0, "gridsq": "X422Y425", "numresp": 27, "numpeople": 63.18, "numkeys": 3, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[423000.0, 425000.0], [422000.0, 425000.0], [422000.0, 426000.0], [423000.0, 426000.0], [423000.0, 425000.0]]]}}, {"id": "2491", "type": "Feature", "properties": {"easting": 443500.0, "northing": 425500.0, "gridsq": "X443Y425", "numresp": 43, "numpeople": 100.62, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[444000.0, 425000.0], [443000.0, 425000.0], [443000.0, 426000.0], [444000.0, 426000.0], [444000.0, 425000.0]]]}}, {"id": "2492", "type": "Feature", "properties": {"easting": 366500.0, "northing": 426500.0, "gridsq": "X366Y426", "numresp": 97, "numpeople": 226.98, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[367000.0, 426000.0], [366000.0, 426000.0], [366000.0, 427000.0], [367000.0, 427000.0], [367000.0, 426000.0]]]}}, {"id": "2493", "type": "Feature", "properties": {"easting": 367500.0, "northing": 426500.0, "gridsq": "X367Y426", "numresp": 47, "numpeople": 109.98, "numkeys": 2, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[368000.0, 426000.0], [367000.0, 426000.0], [367000.0, 427000.0], [368000.0, 427000.0], [368000.0, 426000.0]]]}}, {"id": "2494", "type": "Feature", "properties": {"easting": 368500.0, "northing": 426500.0, "gridsq": "X368Y426", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 426000.0], [368000.0, 426000.0], [368000.0, 427000.0], [369000.0, 427000.0], [369000.0, 426000.0]]]}}, {"id": "2495", "type": "Feature", "properties": {"easting": 390500.0, "northing": 426500.0, "gridsq": "X390Y426", "numresp": 105, "numpeople": 245.7, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 426000.0], [390000.0, 426000.0], [390000.0, 427000.0], [391000.0, 427000.0], [391000.0, 426000.0]]]}}, {"id": "2496", "type": "Feature", "properties": {"easting": 400500.0, "northing": 426500.0, "gridsq": "X400Y426", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 426000.0], [400000.0, 426000.0], [400000.0, 427000.0], [401000.0, 427000.0], [401000.0, 426000.0]]]}}, {"id": "2497", "type": "Feature", "properties": {"easting": 503500.0, "northing": 426500.0, "gridsq": "X503Y426", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[504000.0, 426000.0], [503000.0, 426000.0], [503000.0, 427000.0], [504000.0, 427000.0], [504000.0, 426000.0]]]}}, {"id": "2498", "type": "Feature", "properties": {"easting": 367500.0, "northing": 427500.0, "gridsq": "X367Y427", "numresp": 53, "numpeople": 124.02, "numkeys": 7, "numnonresp": 79, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[368000.0, 427000.0], [367000.0, 427000.0], [367000.0, 428000.0], [368000.0, 428000.0], [368000.0, 427000.0]]]}}, {"id": "2499", "type": "Feature", "properties": {"easting": 369500.0, "northing": 427500.0, "gridsq": "X369Y427", "numresp": 117, "numpeople": 273.78, "numkeys": 0, "numnonresp": 47, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 427000.0], [369000.0, 427000.0], [369000.0, 428000.0], [370000.0, 428000.0], [370000.0, 427000.0]]]}}, {"id": "2500", "type": "Feature", "properties": {"easting": 375500.0, "northing": 427500.0, "gridsq": "X375Y427", "numresp": 8, "numpeople": 18.72, "numkeys": 1, "numnonresp": 141, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[376000.0, 427000.0], [375000.0, 427000.0], [375000.0, 428000.0], [376000.0, 428000.0], [376000.0, 427000.0]]]}}, {"id": "2501", "type": "Feature", "properties": {"easting": 398500.0, "northing": 427500.0, "gridsq": "X398Y427", "numresp": 22, "numpeople": 51.48, "numkeys": 3, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[399000.0, 427000.0], [398000.0, 427000.0], [398000.0, 428000.0], [399000.0, 428000.0], [399000.0, 427000.0]]]}}, {"id": "2502", "type": "Feature", "properties": {"easting": 399500.0, "northing": 427500.0, "gridsq": "X399Y427", "numresp": 60, "numpeople": 140.4, "numkeys": 2, "numnonresp": 130, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[400000.0, 427000.0], [399000.0, 427000.0], [399000.0, 428000.0], [400000.0, 428000.0], [400000.0, 427000.0]]]}}, {"id": "2503", "type": "Feature", "properties": {"easting": 416500.0, "northing": 427500.0, "gridsq": "X416Y427", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 427000.0], [416000.0, 427000.0], [416000.0, 428000.0], [417000.0, 428000.0], [417000.0, 427000.0]]]}}, {"id": "2504", "type": "Feature", "properties": {"easting": 425500.0, "northing": 427500.0, "gridsq": "X425Y427", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[426000.0, 427000.0], [425000.0, 427000.0], [425000.0, 428000.0], [426000.0, 428000.0], [426000.0, 427000.0]]]}}, {"id": "2505", "type": "Feature", "properties": {"easting": 534500.0, "northing": 427500.0, "gridsq": "X534Y427", "numresp": 26, "numpeople": 60.84, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[535000.0, 427000.0], [534000.0, 427000.0], [534000.0, 428000.0], [535000.0, 428000.0], [535000.0, 427000.0]]]}}, {"id": "2506", "type": "Feature", "properties": {"easting": 368500.0, "northing": 428500.0, "gridsq": "X368Y428", "numresp": 57, "numpeople": 133.38, "numkeys": 7, "numnonresp": 74, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 428000.0], [368000.0, 428000.0], [368000.0, 429000.0], [369000.0, 429000.0], [369000.0, 428000.0]]]}}, {"id": "2507", "type": "Feature", "properties": {"easting": 369500.0, "northing": 428500.0, "gridsq": "X369Y428", "numresp": 3, "numpeople": 7.02, "numkeys": 5, "numnonresp": 40, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 428000.0], [369000.0, 428000.0], [369000.0, 429000.0], [370000.0, 429000.0], [370000.0, 428000.0]]]}}, {"id": "2508", "type": "Feature", "properties": {"easting": 374500.0, "northing": 428500.0, "gridsq": "X374Y428", "numresp": 102, "numpeople": 238.68, "numkeys": 1, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[375000.0, 428000.0], [374000.0, 428000.0], [374000.0, 429000.0], [375000.0, 429000.0], [375000.0, 428000.0]]]}}, {"id": "2509", "type": "Feature", "properties": {"easting": 375500.0, "northing": 428500.0, "gridsq": "X375Y428", "numresp": 25, "numpeople": 58.5, "numkeys": 3, "numnonresp": 50, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[376000.0, 428000.0], [375000.0, 428000.0], [375000.0, 429000.0], [376000.0, 429000.0], [376000.0, 428000.0]]]}}, {"id": "2510", "type": "Feature", "properties": {"easting": 376500.0, "northing": 428500.0, "gridsq": "X376Y428", "numresp": 118, "numpeople": 276.12, "numkeys": 0, "numnonresp": 288, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[377000.0, 428000.0], [376000.0, 428000.0], [376000.0, 429000.0], [377000.0, 429000.0], [377000.0, 428000.0]]]}}, {"id": "2511", "type": "Feature", "properties": {"easting": 396500.0, "northing": 428500.0, "gridsq": "X396Y428", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[397000.0, 428000.0], [396000.0, 428000.0], [396000.0, 429000.0], [397000.0, 429000.0], [397000.0, 428000.0]]]}}, {"id": "2512", "type": "Feature", "properties": {"easting": 407500.0, "northing": 428500.0, "gridsq": "X407Y428", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 428000.0], [407000.0, 428000.0], [407000.0, 429000.0], [408000.0, 429000.0], [408000.0, 428000.0]]]}}, {"id": "2513", "type": "Feature", "properties": {"easting": 408500.0, "northing": 428500.0, "gridsq": "X408Y428", "numresp": 17, "numpeople": 39.78, "numkeys": 2, "numnonresp": 87, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 428000.0], [408000.0, 428000.0], [408000.0, 429000.0], [409000.0, 429000.0], [409000.0, 428000.0]]]}}, {"id": "2514", "type": "Feature", "properties": {"easting": 415500.0, "northing": 428500.0, "gridsq": "X415Y428", "numresp": 24, "numpeople": 56.16, "numkeys": 3, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 428000.0], [415000.0, 428000.0], [415000.0, 429000.0], [416000.0, 429000.0], [416000.0, 428000.0]]]}}, {"id": "2515", "type": "Feature", "properties": {"easting": 434500.0, "northing": 428500.0, "gridsq": "X434Y428", "numresp": 51, "numpeople": 119.34, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 428000.0], [434000.0, 428000.0], [434000.0, 429000.0], [435000.0, 429000.0], [435000.0, 428000.0]]]}}, {"id": "2516", "type": "Feature", "properties": {"easting": 503500.0, "northing": 428500.0, "gridsq": "X503Y428", "numresp": 233, "numpeople": 545.22, "numkeys": 1, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[504000.0, 428000.0], [503000.0, 428000.0], [503000.0, 429000.0], [504000.0, 429000.0], [504000.0, 428000.0]]]}}, {"id": "2517", "type": "Feature", "properties": {"easting": 504500.0, "northing": 428500.0, "gridsq": "X504Y428", "numresp": 84, "numpeople": 196.56, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 428000.0], [504000.0, 428000.0], [504000.0, 429000.0], [505000.0, 429000.0], [505000.0, 428000.0]]]}}, {"id": "2518", "type": "Feature", "properties": {"easting": 505500.0, "northing": 428500.0, "gridsq": "X505Y428", "numresp": 406, "numpeople": 950.04, "numkeys": 8, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 428000.0], [505000.0, 428000.0], [505000.0, 429000.0], [506000.0, 429000.0], [506000.0, 428000.0]]]}}, {"id": "2519", "type": "Feature", "properties": {"easting": 352500.0, "northing": 429500.0, "gridsq": "X352Y429", "numresp": 15, "numpeople": 35.1, "numkeys": 1, "numnonresp": 34, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[353000.0, 429000.0], [352000.0, 429000.0], [352000.0, 430000.0], [353000.0, 430000.0], [353000.0, 429000.0]]]}}, {"id": "2520", "type": "Feature", "properties": {"easting": 353500.0, "northing": 429500.0, "gridsq": "X353Y429", "numresp": 11, "numpeople": 25.74, "numkeys": 1, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[354000.0, 429000.0], [353000.0, 429000.0], [353000.0, 430000.0], [354000.0, 430000.0], [354000.0, 429000.0]]]}}, {"id": "2521", "type": "Feature", "properties": {"easting": 354500.0, "northing": 429500.0, "gridsq": "X354Y429", "numresp": 53, "numpeople": 124.02, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[355000.0, 429000.0], [354000.0, 429000.0], [354000.0, 430000.0], [355000.0, 430000.0], [355000.0, 429000.0]]]}}, {"id": "2522", "type": "Feature", "properties": {"easting": 368500.0, "northing": 429500.0, "gridsq": "X368Y429", "numresp": 31, "numpeople": 72.54, "numkeys": 0, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 429000.0], [368000.0, 429000.0], [368000.0, 430000.0], [369000.0, 430000.0], [369000.0, 429000.0]]]}}, {"id": "2523", "type": "Feature", "properties": {"easting": 369500.0, "northing": 429500.0, "gridsq": "X369Y429", "numresp": 82, "numpeople": 191.88, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[370000.0, 429000.0], [369000.0, 429000.0], [369000.0, 430000.0], [370000.0, 430000.0], [370000.0, 429000.0]]]}}, {"id": "2524", "type": "Feature", "properties": {"easting": 416500.0, "northing": 429500.0, "gridsq": "X416Y429", "numresp": 1, "numpeople": 2.34, "numkeys": 4, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 429000.0], [416000.0, 429000.0], [416000.0, 430000.0], [417000.0, 430000.0], [417000.0, 429000.0]]]}}, {"id": "2525", "type": "Feature", "properties": {"easting": 504500.0, "northing": 429500.0, "gridsq": "X504Y429", "numresp": 641, "numpeople": 1499.94, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 429000.0], [504000.0, 429000.0], [504000.0, 430000.0], [505000.0, 430000.0], [505000.0, 429000.0]]]}}, {"id": "2526", "type": "Feature", "properties": {"easting": 505500.0, "northing": 429500.0, "gridsq": "X505Y429", "numresp": 274, "numpeople": 641.16, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 429000.0], [505000.0, 429000.0], [505000.0, 430000.0], [506000.0, 430000.0], [506000.0, 429000.0]]]}}, {"id": "2527", "type": "Feature", "properties": {"easting": 506500.0, "northing": 429500.0, "gridsq": "X506Y429", "numresp": 17, "numpeople": 39.78, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 429000.0], [506000.0, 429000.0], [506000.0, 430000.0], [507000.0, 430000.0], [507000.0, 429000.0]]]}}, {"id": "2528", "type": "Feature", "properties": {"easting": 510500.0, "northing": 429500.0, "gridsq": "X510Y429", "numresp": 1, "numpeople": 2.34, "numkeys": 3, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 429000.0], [510000.0, 429000.0], [510000.0, 430000.0], [511000.0, 430000.0], [511000.0, 429000.0]]]}}, {"id": "2529", "type": "Feature", "properties": {"easting": 354500.0, "northing": 430500.0, "gridsq": "X354Y430", "numresp": 25, "numpeople": 58.5, "numkeys": 3, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[355000.0, 430000.0], [354000.0, 430000.0], [354000.0, 431000.0], [355000.0, 431000.0], [355000.0, 430000.0]]]}}, {"id": "2530", "type": "Feature", "properties": {"easting": 368500.0, "northing": 430500.0, "gridsq": "X368Y430", "numresp": 43, "numpeople": 100.62, "numkeys": 2, "numnonresp": 77, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[369000.0, 430000.0], [368000.0, 430000.0], [368000.0, 431000.0], [369000.0, 431000.0], [369000.0, 430000.0]]]}}, {"id": "2531", "type": "Feature", "properties": {"easting": 414500.0, "northing": 430500.0, "gridsq": "X414Y430", "numresp": 9, "numpeople": 21.06, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 430000.0], [414000.0, 430000.0], [414000.0, 431000.0], [415000.0, 431000.0], [415000.0, 430000.0]]]}}, {"id": "2532", "type": "Feature", "properties": {"easting": 415500.0, "northing": 430500.0, "gridsq": "X415Y430", "numresp": 37, "numpeople": 86.58, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 430000.0], [415000.0, 430000.0], [415000.0, 431000.0], [416000.0, 431000.0], [416000.0, 430000.0]]]}}, {"id": "2533", "type": "Feature", "properties": {"easting": 441500.0, "northing": 430500.0, "gridsq": "X441Y430", "numresp": 133, "numpeople": 311.22, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[442000.0, 430000.0], [441000.0, 430000.0], [441000.0, 431000.0], [442000.0, 431000.0], [442000.0, 430000.0]]]}}, {"id": "2534", "type": "Feature", "properties": {"easting": 505500.0, "northing": 430500.0, "gridsq": "X505Y430", "numresp": 80, "numpeople": 187.2, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 430000.0], [505000.0, 430000.0], [505000.0, 431000.0], [506000.0, 431000.0], [506000.0, 430000.0]]]}}, {"id": "2535", "type": "Feature", "properties": {"easting": 508500.0, "northing": 430500.0, "gridsq": "X508Y430", "numresp": 155, "numpeople": 362.7, "numkeys": 0, "numnonresp": 28, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 430000.0], [508000.0, 430000.0], [508000.0, 431000.0], [509000.0, 431000.0], [509000.0, 430000.0]]]}}, {"id": "2536", "type": "Feature", "properties": {"easting": 510500.0, "northing": 430500.0, "gridsq": "X510Y430", "numresp": 114, "numpeople": 266.76, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[511000.0, 430000.0], [510000.0, 430000.0], [510000.0, 431000.0], [511000.0, 431000.0], [511000.0, 430000.0]]]}}, {"id": "2537", "type": "Feature", "properties": {"easting": 342500.0, "northing": 431500.0, "gridsq": "X342Y431", "numresp": 3, "numpeople": 7.02, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[343000.0, 431000.0], [342000.0, 431000.0], [342000.0, 432000.0], [343000.0, 432000.0], [343000.0, 431000.0]]]}}, {"id": "2538", "type": "Feature", "properties": {"easting": 352500.0, "northing": 431500.0, "gridsq": "X352Y431", "numresp": 120, "numpeople": 280.8, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[353000.0, 431000.0], [352000.0, 431000.0], [352000.0, 432000.0], [353000.0, 432000.0], [353000.0, 431000.0]]]}}, {"id": "2539", "type": "Feature", "properties": {"easting": 414500.0, "northing": 431500.0, "gridsq": "X414Y431", "numresp": 25, "numpeople": 58.5, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 431000.0], [414000.0, 431000.0], [414000.0, 432000.0], [415000.0, 432000.0], [415000.0, 431000.0]]]}}, {"id": "2540", "type": "Feature", "properties": {"easting": 415500.0, "northing": 431500.0, "gridsq": "X415Y431", "numresp": 16, "numpeople": 37.44, "numkeys": 2, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 431000.0], [415000.0, 431000.0], [415000.0, 432000.0], [416000.0, 432000.0], [416000.0, 431000.0]]]}}, {"id": "2541", "type": "Feature", "properties": {"easting": 416500.0, "northing": 431500.0, "gridsq": "X416Y431", "numresp": 9, "numpeople": 21.06, "numkeys": 3, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 431000.0], [416000.0, 431000.0], [416000.0, 432000.0], [417000.0, 432000.0], [417000.0, 431000.0]]]}}, {"id": "2542", "type": "Feature", "properties": {"easting": 419500.0, "northing": 431500.0, "gridsq": "X419Y431", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[420000.0, 431000.0], [419000.0, 431000.0], [419000.0, 432000.0], [420000.0, 432000.0], [420000.0, 431000.0]]]}}, {"id": "2543", "type": "Feature", "properties": {"easting": 449500.0, "northing": 431500.0, "gridsq": "X449Y431", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[450000.0, 431000.0], [449000.0, 431000.0], [449000.0, 432000.0], [450000.0, 432000.0], [450000.0, 431000.0]]]}}, {"id": "2544", "type": "Feature", "properties": {"easting": 506500.0, "northing": 431500.0, "gridsq": "X506Y431", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 431000.0], [506000.0, 431000.0], [506000.0, 432000.0], [507000.0, 432000.0], [507000.0, 431000.0]]]}}, {"id": "2545", "type": "Feature", "properties": {"easting": 508500.0, "northing": 431500.0, "gridsq": "X508Y431", "numresp": 135, "numpeople": 315.9, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[509000.0, 431000.0], [508000.0, 431000.0], [508000.0, 432000.0], [509000.0, 432000.0], [509000.0, 431000.0]]]}}, {"id": "2546", "type": "Feature", "properties": {"easting": 373500.0, "northing": 432500.0, "gridsq": "X373Y432", "numresp": 54, "numpeople": 126.36, "numkeys": 1, "numnonresp": 44, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[374000.0, 432000.0], [373000.0, 432000.0], [373000.0, 433000.0], [374000.0, 433000.0], [374000.0, 432000.0]]]}}, {"id": "2547", "type": "Feature", "properties": {"easting": 382500.0, "northing": 432500.0, "gridsq": "X382Y432", "numresp": 79, "numpeople": 184.86, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[383000.0, 432000.0], [382000.0, 432000.0], [382000.0, 433000.0], [383000.0, 433000.0], [383000.0, 432000.0]]]}}, {"id": "2548", "type": "Feature", "properties": {"easting": 384500.0, "northing": 432500.0, "gridsq": "X384Y432", "numresp": 89, "numpeople": 208.26, "numkeys": 7, "numnonresp": 63, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 432000.0], [384000.0, 432000.0], [384000.0, 433000.0], [385000.0, 433000.0], [385000.0, 432000.0]]]}}, {"id": "2549", "type": "Feature", "properties": {"easting": 385500.0, "northing": 432500.0, "gridsq": "X385Y432", "numresp": 170, "numpeople": 397.8, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 432000.0], [385000.0, 432000.0], [385000.0, 433000.0], [386000.0, 433000.0], [386000.0, 432000.0]]]}}, {"id": "2550", "type": "Feature", "properties": {"easting": 415500.0, "northing": 432500.0, "gridsq": "X415Y432", "numresp": 78, "numpeople": 182.52, "numkeys": 4, "numnonresp": 484, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 432000.0], [415000.0, 432000.0], [415000.0, 433000.0], [416000.0, 433000.0], [416000.0, 432000.0]]]}}, {"id": "2551", "type": "Feature", "properties": {"easting": 416500.0, "northing": 432500.0, "gridsq": "X416Y432", "numresp": 44, "numpeople": 102.96, "numkeys": 14, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 432000.0], [416000.0, 432000.0], [416000.0, 433000.0], [417000.0, 433000.0], [417000.0, 432000.0]]]}}, {"id": "2552", "type": "Feature", "properties": {"easting": 417500.0, "northing": 432500.0, "gridsq": "X417Y432", "numresp": 5, "numpeople": 11.7, "numkeys": 4, "numnonresp": 31, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[418000.0, 432000.0], [417000.0, 432000.0], [417000.0, 433000.0], [418000.0, 433000.0], [418000.0, 432000.0]]]}}, {"id": "2553", "type": "Feature", "properties": {"easting": 503500.0, "northing": 432500.0, "gridsq": "X503Y432", "numresp": 232, "numpeople": 542.88, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[504000.0, 432000.0], [503000.0, 432000.0], [503000.0, 433000.0], [504000.0, 433000.0], [504000.0, 432000.0]]]}}, {"id": "2554", "type": "Feature", "properties": {"easting": 509500.0, "northing": 432500.0, "gridsq": "X509Y432", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[510000.0, 432000.0], [509000.0, 432000.0], [509000.0, 433000.0], [510000.0, 433000.0], [510000.0, 432000.0]]]}}, {"id": "2555", "type": "Feature", "properties": {"easting": 379500.0, "northing": 433500.0, "gridsq": "X379Y433", "numresp": 25, "numpeople": 58.5, "numkeys": 3, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[380000.0, 433000.0], [379000.0, 433000.0], [379000.0, 434000.0], [380000.0, 434000.0], [380000.0, 433000.0]]]}}, {"id": "2556", "type": "Feature", "properties": {"easting": 384500.0, "northing": 433500.0, "gridsq": "X384Y433", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 118, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 433000.0], [384000.0, 433000.0], [384000.0, 434000.0], [385000.0, 434000.0], [385000.0, 433000.0]]]}}, {"id": "2557", "type": "Feature", "properties": {"easting": 385500.0, "northing": 433500.0, "gridsq": "X385Y433", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 433000.0], [385000.0, 433000.0], [385000.0, 434000.0], [386000.0, 434000.0], [386000.0, 433000.0]]]}}, {"id": "2558", "type": "Feature", "properties": {"easting": 413500.0, "northing": 433500.0, "gridsq": "X413Y433", "numresp": 79, "numpeople": 184.86, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[414000.0, 433000.0], [413000.0, 433000.0], [413000.0, 434000.0], [414000.0, 434000.0], [414000.0, 433000.0]]]}}, {"id": "2559", "type": "Feature", "properties": {"easting": 414500.0, "northing": 433500.0, "gridsq": "X414Y433", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 433000.0], [414000.0, 433000.0], [414000.0, 434000.0], [415000.0, 434000.0], [415000.0, 433000.0]]]}}, {"id": "2560", "type": "Feature", "properties": {"easting": 415500.0, "northing": 433500.0, "gridsq": "X415Y433", "numresp": 5, "numpeople": 11.7, "numkeys": 4, "numnonresp": 92, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 433000.0], [415000.0, 433000.0], [415000.0, 434000.0], [416000.0, 434000.0], [416000.0, 433000.0]]]}}, {"id": "2561", "type": "Feature", "properties": {"easting": 416500.0, "northing": 433500.0, "gridsq": "X416Y433", "numresp": 167, "numpeople": 390.78, "numkeys": 7, "numnonresp": 105, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 433000.0], [416000.0, 433000.0], [416000.0, 434000.0], [417000.0, 434000.0], [417000.0, 433000.0]]]}}, {"id": "2562", "type": "Feature", "properties": {"easting": 419500.0, "northing": 433500.0, "gridsq": "X419Y433", "numresp": 6, "numpeople": 14.04, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[420000.0, 433000.0], [419000.0, 433000.0], [419000.0, 434000.0], [420000.0, 434000.0], [420000.0, 433000.0]]]}}, {"id": "2563", "type": "Feature", "properties": {"easting": 428500.0, "northing": 433500.0, "gridsq": "X428Y433", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 433000.0], [428000.0, 433000.0], [428000.0, 434000.0], [429000.0, 434000.0], [429000.0, 433000.0]]]}}, {"id": "2564", "type": "Feature", "properties": {"easting": 429500.0, "northing": 433500.0, "gridsq": "X429Y433", "numresp": 0, "numpeople": 0.0, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 433000.0], [429000.0, 433000.0], [429000.0, 434000.0], [430000.0, 434000.0], [430000.0, 433000.0]]]}}, {"id": "2565", "type": "Feature", "properties": {"easting": 430500.0, "northing": 433500.0, "gridsq": "X430Y433", "numresp": 195, "numpeople": 456.3, "numkeys": 1, "numnonresp": 55, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 433000.0], [430000.0, 433000.0], [430000.0, 434000.0], [431000.0, 434000.0], [431000.0, 433000.0]]]}}, {"id": "2566", "type": "Feature", "properties": {"easting": 431500.0, "northing": 433500.0, "gridsq": "X431Y433", "numresp": 86, "numpeople": 201.24, "numkeys": 1, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 433000.0], [431000.0, 433000.0], [431000.0, 434000.0], [432000.0, 434000.0], [432000.0, 433000.0]]]}}, {"id": "2567", "type": "Feature", "properties": {"easting": 432500.0, "northing": 433500.0, "gridsq": "X432Y433", "numresp": 11, "numpeople": 25.74, "numkeys": 4, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 433000.0], [432000.0, 433000.0], [432000.0, 434000.0], [433000.0, 434000.0], [433000.0, 433000.0]]]}}, {"id": "2568", "type": "Feature", "properties": {"easting": 504500.0, "northing": 433500.0, "gridsq": "X504Y433", "numresp": 186, "numpeople": 435.24, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 433000.0], [504000.0, 433000.0], [504000.0, 434000.0], [505000.0, 434000.0], [505000.0, 433000.0]]]}}, {"id": "2569", "type": "Feature", "properties": {"easting": 505500.0, "northing": 433500.0, "gridsq": "X505Y433", "numresp": 92, "numpeople": 215.28, "numkeys": 2, "numnonresp": 17, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[506000.0, 433000.0], [505000.0, 433000.0], [505000.0, 434000.0], [506000.0, 434000.0], [506000.0, 433000.0]]]}}, {"id": "2570", "type": "Feature", "properties": {"easting": 506500.0, "northing": 433500.0, "gridsq": "X506Y433", "numresp": 238, "numpeople": 556.92, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[507000.0, 433000.0], [506000.0, 433000.0], [506000.0, 434000.0], [507000.0, 434000.0], [507000.0, 433000.0]]]}}, {"id": "2571", "type": "Feature", "properties": {"easting": 507500.0, "northing": 433500.0, "gridsq": "X507Y433", "numresp": 16, "numpeople": 37.44, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[508000.0, 433000.0], [507000.0, 433000.0], [507000.0, 434000.0], [508000.0, 434000.0], [508000.0, 433000.0]]]}}, {"id": "2572", "type": "Feature", "properties": {"easting": 331500.0, "northing": 434500.0, "gridsq": "X331Y434", "numresp": 158, "numpeople": 369.72, "numkeys": 0, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 434000.0], [331000.0, 434000.0], [331000.0, 435000.0], [332000.0, 435000.0], [332000.0, 434000.0]]]}}, {"id": "2573", "type": "Feature", "properties": {"easting": 332500.0, "northing": 434500.0, "gridsq": "X332Y434", "numresp": 38, "numpeople": 88.92, "numkeys": 2, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[333000.0, 434000.0], [332000.0, 434000.0], [332000.0, 435000.0], [333000.0, 435000.0], [333000.0, 434000.0]]]}}, {"id": "2574", "type": "Feature", "properties": {"easting": 384500.0, "northing": 434500.0, "gridsq": "X384Y434", "numresp": 125, "numpeople": 292.5, "numkeys": 1, "numnonresp": 37, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[385000.0, 434000.0], [384000.0, 434000.0], [384000.0, 435000.0], [385000.0, 435000.0], [385000.0, 434000.0]]]}}, {"id": "2575", "type": "Feature", "properties": {"easting": 385500.0, "northing": 434500.0, "gridsq": "X385Y434", "numresp": 31, "numpeople": 72.54, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[386000.0, 434000.0], [385000.0, 434000.0], [385000.0, 435000.0], [386000.0, 435000.0], [386000.0, 434000.0]]]}}, {"id": "2576", "type": "Feature", "properties": {"easting": 413500.0, "northing": 434500.0, "gridsq": "X413Y434", "numresp": 6, "numpeople": 14.04, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[414000.0, 434000.0], [413000.0, 434000.0], [413000.0, 435000.0], [414000.0, 435000.0], [414000.0, 434000.0]]]}}, {"id": "2577", "type": "Feature", "properties": {"easting": 416500.0, "northing": 434500.0, "gridsq": "X416Y434", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 434000.0], [416000.0, 434000.0], [416000.0, 435000.0], [417000.0, 435000.0], [417000.0, 434000.0]]]}}, {"id": "2578", "type": "Feature", "properties": {"easting": 423500.0, "northing": 434500.0, "gridsq": "X423Y434", "numresp": 43, "numpeople": 100.62, "numkeys": 1, "numnonresp": 46, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[424000.0, 434000.0], [423000.0, 434000.0], [423000.0, 435000.0], [424000.0, 435000.0], [424000.0, 434000.0]]]}}, {"id": "2579", "type": "Feature", "properties": {"easting": 427500.0, "northing": 434500.0, "gridsq": "X427Y434", "numresp": 10, "numpeople": 23.4, "numkeys": 3, "numnonresp": 18, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 434000.0], [427000.0, 434000.0], [427000.0, 435000.0], [428000.0, 435000.0], [428000.0, 434000.0]]]}}, {"id": "2580", "type": "Feature", "properties": {"easting": 430500.0, "northing": 434500.0, "gridsq": "X430Y434", "numresp": 296, "numpeople": 692.64, "numkeys": 3, "numnonresp": 67, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 434000.0], [430000.0, 434000.0], [430000.0, 435000.0], [431000.0, 435000.0], [431000.0, 434000.0]]]}}, {"id": "2581", "type": "Feature", "properties": {"easting": 431500.0, "northing": 434500.0, "gridsq": "X431Y434", "numresp": 98, "numpeople": 229.32, "numkeys": 7, "numnonresp": 97, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 434000.0], [431000.0, 434000.0], [431000.0, 435000.0], [432000.0, 435000.0], [432000.0, 434000.0]]]}}, {"id": "2582", "type": "Feature", "properties": {"easting": 436500.0, "northing": 434500.0, "gridsq": "X436Y434", "numresp": 66, "numpeople": 154.44, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 434000.0], [436000.0, 434000.0], [436000.0, 435000.0], [437000.0, 435000.0], [437000.0, 434000.0]]]}}, {"id": "2583", "type": "Feature", "properties": {"easting": 330500.0, "northing": 435500.0, "gridsq": "X330Y435", "numresp": 54, "numpeople": 126.36, "numkeys": 2, "numnonresp": 27, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[331000.0, 435000.0], [330000.0, 435000.0], [330000.0, 436000.0], [331000.0, 436000.0], [331000.0, 435000.0]]]}}, {"id": "2584", "type": "Feature", "properties": {"easting": 364500.0, "northing": 435500.0, "gridsq": "X364Y435", "numresp": 21, "numpeople": 49.14, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[365000.0, 435000.0], [364000.0, 435000.0], [364000.0, 436000.0], [365000.0, 436000.0], [365000.0, 435000.0]]]}}, {"id": "2585", "type": "Feature", "properties": {"easting": 414500.0, "northing": 435500.0, "gridsq": "X414Y435", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 435000.0], [414000.0, 435000.0], [414000.0, 436000.0], [415000.0, 436000.0], [415000.0, 435000.0]]]}}, {"id": "2586", "type": "Feature", "properties": {"easting": 415500.0, "northing": 435500.0, "gridsq": "X415Y435", "numresp": 35, "numpeople": 81.9, "numkeys": 2, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 435000.0], [415000.0, 435000.0], [415000.0, 436000.0], [416000.0, 436000.0], [416000.0, 435000.0]]]}}, {"id": "2587", "type": "Feature", "properties": {"easting": 422500.0, "northing": 435500.0, "gridsq": "X422Y435", "numresp": 89, "numpeople": 208.26, "numkeys": 0, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[423000.0, 435000.0], [422000.0, 435000.0], [422000.0, 436000.0], [423000.0, 436000.0], [423000.0, 435000.0]]]}}, {"id": "2588", "type": "Feature", "properties": {"easting": 425500.0, "northing": 435500.0, "gridsq": "X425Y435", "numresp": 60, "numpeople": 140.4, "numkeys": 0, "numnonresp": 490, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[426000.0, 435000.0], [425000.0, 435000.0], [425000.0, 436000.0], [426000.0, 436000.0], [426000.0, 435000.0]]]}}, {"id": "2589", "type": "Feature", "properties": {"easting": 427500.0, "northing": 435500.0, "gridsq": "X427Y435", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 435000.0], [427000.0, 435000.0], [427000.0, 436000.0], [428000.0, 436000.0], [428000.0, 435000.0]]]}}, {"id": "2590", "type": "Feature", "properties": {"easting": 430500.0, "northing": 435500.0, "gridsq": "X430Y435", "numresp": 20, "numpeople": 46.8, "numkeys": 4, "numnonresp": 20, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 435000.0], [430000.0, 435000.0], [430000.0, 436000.0], [431000.0, 436000.0], [431000.0, 435000.0]]]}}, {"id": "2591", "type": "Feature", "properties": {"easting": 431500.0, "northing": 435500.0, "gridsq": "X431Y435", "numresp": 227, "numpeople": 531.18, "numkeys": 4, "numnonresp": 36, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 435000.0], [431000.0, 435000.0], [431000.0, 436000.0], [432000.0, 436000.0], [432000.0, 435000.0]]]}}, {"id": "2592", "type": "Feature", "properties": {"easting": 433500.0, "northing": 435500.0, "gridsq": "X433Y435", "numresp": 108, "numpeople": 252.72, "numkeys": 1, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 435000.0], [433000.0, 435000.0], [433000.0, 436000.0], [434000.0, 436000.0], [434000.0, 435000.0]]]}}, {"id": "2593", "type": "Feature", "properties": {"easting": 434500.0, "northing": 435500.0, "gridsq": "X434Y435", "numresp": 106, "numpeople": 248.04, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 435000.0], [434000.0, 435000.0], [434000.0, 436000.0], [435000.0, 436000.0], [435000.0, 435000.0]]]}}, {"id": "2594", "type": "Feature", "properties": {"easting": 406500.0, "northing": 436500.0, "gridsq": "X406Y436", "numresp": 65, "numpeople": 152.1, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 436000.0], [406000.0, 436000.0], [406000.0, 437000.0], [407000.0, 437000.0], [407000.0, 436000.0]]]}}, {"id": "2595", "type": "Feature", "properties": {"easting": 415500.0, "northing": 436500.0, "gridsq": "X415Y436", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 436000.0], [415000.0, 436000.0], [415000.0, 437000.0], [416000.0, 437000.0], [416000.0, 436000.0]]]}}, {"id": "2596", "type": "Feature", "properties": {"easting": 422500.0, "northing": 436500.0, "gridsq": "X422Y436", "numresp": 63, "numpeople": 147.42, "numkeys": 2, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[423000.0, 436000.0], [422000.0, 436000.0], [422000.0, 437000.0], [423000.0, 437000.0], [423000.0, 436000.0]]]}}, {"id": "2597", "type": "Feature", "properties": {"easting": 432500.0, "northing": 436500.0, "gridsq": "X432Y436", "numresp": 85, "numpeople": 198.9, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 436000.0], [432000.0, 436000.0], [432000.0, 437000.0], [433000.0, 437000.0], [433000.0, 436000.0]]]}}, {"id": "2598", "type": "Feature", "properties": {"easting": 331500.0, "northing": 437500.0, "gridsq": "X331Y437", "numresp": 150, "numpeople": 351.0, "numkeys": 0, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 437000.0], [331000.0, 437000.0], [331000.0, 438000.0], [332000.0, 438000.0], [332000.0, 437000.0]]]}}, {"id": "2599", "type": "Feature", "properties": {"easting": 377500.0, "northing": 437500.0, "gridsq": "X377Y437", "numresp": 48, "numpeople": 112.32, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[378000.0, 437000.0], [377000.0, 437000.0], [377000.0, 438000.0], [378000.0, 438000.0], [378000.0, 437000.0]]]}}, {"id": "2600", "type": "Feature", "properties": {"easting": 386500.0, "northing": 437500.0, "gridsq": "X386Y437", "numresp": 42, "numpeople": 98.28, "numkeys": 1, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 437000.0], [386000.0, 437000.0], [386000.0, 438000.0], [387000.0, 438000.0], [387000.0, 437000.0]]]}}, {"id": "2601", "type": "Feature", "properties": {"easting": 418500.0, "northing": 437500.0, "gridsq": "X418Y437", "numresp": 69, "numpeople": 161.46, "numkeys": 1, "numnonresp": 111, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[419000.0, 437000.0], [418000.0, 437000.0], [418000.0, 438000.0], [419000.0, 438000.0], [419000.0, 437000.0]]]}}, {"id": "2602", "type": "Feature", "properties": {"easting": 429500.0, "northing": 437500.0, "gridsq": "X429Y437", "numresp": 26, "numpeople": 60.84, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 437000.0], [429000.0, 437000.0], [429000.0, 438000.0], [430000.0, 438000.0], [430000.0, 437000.0]]]}}, {"id": "2603", "type": "Feature", "properties": {"easting": 435500.0, "northing": 437500.0, "gridsq": "X435Y437", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 437000.0], [435000.0, 437000.0], [435000.0, 438000.0], [436000.0, 438000.0], [436000.0, 437000.0]]]}}, {"id": "2604", "type": "Feature", "properties": {"easting": 386500.0, "northing": 438500.0, "gridsq": "X386Y438", "numresp": 40, "numpeople": 93.6, "numkeys": 7, "numnonresp": 19, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[387000.0, 438000.0], [386000.0, 438000.0], [386000.0, 439000.0], [387000.0, 439000.0], [387000.0, 438000.0]]]}}, {"id": "2605", "type": "Feature", "properties": {"easting": 411500.0, "northing": 438500.0, "gridsq": "X411Y438", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 438000.0], [411000.0, 438000.0], [411000.0, 439000.0], [412000.0, 439000.0], [412000.0, 438000.0]]]}}, {"id": "2606", "type": "Feature", "properties": {"easting": 413500.0, "northing": 438500.0, "gridsq": "X413Y438", "numresp": 46, "numpeople": 107.64, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[414000.0, 438000.0], [413000.0, 438000.0], [413000.0, 439000.0], [414000.0, 439000.0], [414000.0, 438000.0]]]}}, {"id": "2607", "type": "Feature", "properties": {"easting": 416500.0, "northing": 438500.0, "gridsq": "X416Y438", "numresp": 14, "numpeople": 32.76, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 438000.0], [416000.0, 438000.0], [416000.0, 439000.0], [417000.0, 439000.0], [417000.0, 438000.0]]]}}, {"id": "2608", "type": "Feature", "properties": {"easting": 431500.0, "northing": 438500.0, "gridsq": "X431Y438", "numresp": 95, "numpeople": 222.3, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 438000.0], [431000.0, 438000.0], [431000.0, 439000.0], [432000.0, 439000.0], [432000.0, 438000.0]]]}}, {"id": "2609", "type": "Feature", "properties": {"easting": 435500.0, "northing": 438500.0, "gridsq": "X435Y438", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 438000.0], [435000.0, 438000.0], [435000.0, 439000.0], [436000.0, 439000.0], [436000.0, 438000.0]]]}}, {"id": "2610", "type": "Feature", "properties": {"easting": 504500.0, "northing": 438500.0, "gridsq": "X504Y438", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 438000.0], [504000.0, 438000.0], [504000.0, 439000.0], [505000.0, 439000.0], [505000.0, 438000.0]]]}}, {"id": "2611", "type": "Feature", "properties": {"easting": 331500.0, "northing": 439500.0, "gridsq": "X331Y439", "numresp": 54, "numpeople": 126.36, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 439000.0], [331000.0, 439000.0], [331000.0, 440000.0], [332000.0, 440000.0], [332000.0, 439000.0]]]}}, {"id": "2612", "type": "Feature", "properties": {"easting": 387500.0, "northing": 439500.0, "gridsq": "X387Y439", "numresp": 7, "numpeople": 16.38, "numkeys": 0, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 439000.0], [387000.0, 439000.0], [387000.0, 440000.0], [388000.0, 440000.0], [388000.0, 439000.0]]]}}, {"id": "2613", "type": "Feature", "properties": {"easting": 419500.0, "northing": 439500.0, "gridsq": "X419Y439", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[420000.0, 439000.0], [419000.0, 439000.0], [419000.0, 440000.0], [420000.0, 440000.0], [420000.0, 439000.0]]]}}, {"id": "2614", "type": "Feature", "properties": {"easting": 331500.0, "northing": 440500.0, "gridsq": "X331Y440", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[332000.0, 440000.0], [331000.0, 440000.0], [331000.0, 441000.0], [332000.0, 441000.0], [332000.0, 440000.0]]]}}, {"id": "2615", "type": "Feature", "properties": {"easting": 409500.0, "northing": 440500.0, "gridsq": "X409Y440", "numresp": 2, "numpeople": 4.68, "numkeys": 3, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[410000.0, 440000.0], [409000.0, 440000.0], [409000.0, 441000.0], [410000.0, 441000.0], [410000.0, 440000.0]]]}}, {"id": "2616", "type": "Feature", "properties": {"easting": 416500.0, "northing": 440500.0, "gridsq": "X416Y440", "numresp": 0, "numpeople": 0.0, "numkeys": 1, "numnonresp": 23, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 440000.0], [416000.0, 440000.0], [416000.0, 441000.0], [417000.0, 441000.0], [417000.0, 440000.0]]]}}, {"id": "2617", "type": "Feature", "properties": {"easting": 374500.0, "northing": 441500.0, "gridsq": "X374Y441", "numresp": 172, "numpeople": 402.48, "numkeys": 1, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[375000.0, 441000.0], [374000.0, 441000.0], [374000.0, 442000.0], [375000.0, 442000.0], [375000.0, 441000.0]]]}}, {"id": "2618", "type": "Feature", "properties": {"easting": 406500.0, "northing": 441500.0, "gridsq": "X406Y441", "numresp": 28, "numpeople": 65.52, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[407000.0, 441000.0], [406000.0, 441000.0], [406000.0, 442000.0], [407000.0, 442000.0], [407000.0, 441000.0]]]}}, {"id": "2619", "type": "Feature", "properties": {"easting": 407500.0, "northing": 441500.0, "gridsq": "X407Y441", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[408000.0, 441000.0], [407000.0, 441000.0], [407000.0, 442000.0], [408000.0, 442000.0], [408000.0, 441000.0]]]}}, {"id": "2620", "type": "Feature", "properties": {"easting": 487500.0, "northing": 441500.0, "gridsq": "X487Y441", "numresp": 87, "numpeople": 203.58, "numkeys": 1, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[488000.0, 441000.0], [487000.0, 441000.0], [487000.0, 442000.0], [488000.0, 442000.0], [488000.0, 441000.0]]]}}, {"id": "2621", "type": "Feature", "properties": {"easting": 374500.0, "northing": 442500.0, "gridsq": "X374Y442", "numresp": 111, "numpeople": 259.74, "numkeys": 0, "numnonresp": 12, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[375000.0, 442000.0], [374000.0, 442000.0], [374000.0, 443000.0], [375000.0, 443000.0], [375000.0, 442000.0]]]}}, {"id": "2622", "type": "Feature", "properties": {"easting": 430500.0, "northing": 442500.0, "gridsq": "X430Y442", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 442000.0], [430000.0, 442000.0], [430000.0, 443000.0], [431000.0, 443000.0], [431000.0, 442000.0]]]}}, {"id": "2623", "type": "Feature", "properties": {"easting": 448500.0, "northing": 443500.0, "gridsq": "X448Y443", "numresp": 36, "numpeople": 84.24, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[449000.0, 443000.0], [448000.0, 443000.0], [448000.0, 444000.0], [449000.0, 444000.0], [449000.0, 443000.0]]]}}, {"id": "2624", "type": "Feature", "properties": {"easting": 400500.0, "northing": 444500.0, "gridsq": "X400Y444", "numresp": 111, "numpeople": 259.74, "numkeys": 4, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[401000.0, 444000.0], [400000.0, 444000.0], [400000.0, 445000.0], [401000.0, 445000.0], [401000.0, 444000.0]]]}}, {"id": "2625", "type": "Feature", "properties": {"easting": 403500.0, "northing": 444500.0, "gridsq": "X403Y444", "numresp": 50, "numpeople": 117.0, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[404000.0, 444000.0], [403000.0, 444000.0], [403000.0, 445000.0], [404000.0, 445000.0], [404000.0, 444000.0]]]}}, {"id": "2626", "type": "Feature", "properties": {"easting": 420500.0, "northing": 445500.0, "gridsq": "X420Y445", "numresp": 86, "numpeople": 201.24, "numkeys": 3, "numnonresp": 48, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[421000.0, 445000.0], [420000.0, 445000.0], [420000.0, 446000.0], [421000.0, 446000.0], [421000.0, 445000.0]]]}}, {"id": "2627", "type": "Feature", "properties": {"easting": 387500.0, "northing": 446500.0, "gridsq": "X387Y446", "numresp": 16, "numpeople": 37.44, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[388000.0, 446000.0], [387000.0, 446000.0], [387000.0, 447000.0], [388000.0, 447000.0], [388000.0, 446000.0]]]}}, {"id": "2628", "type": "Feature", "properties": {"easting": 390500.0, "northing": 446500.0, "gridsq": "X390Y446", "numresp": 121, "numpeople": 283.14, "numkeys": 1, "numnonresp": 63, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[391000.0, 446000.0], [390000.0, 446000.0], [390000.0, 447000.0], [391000.0, 447000.0], [391000.0, 446000.0]]]}}, {"id": "2629", "type": "Feature", "properties": {"easting": 404500.0, "northing": 446500.0, "gridsq": "X404Y446", "numresp": 105, "numpeople": 245.7, "numkeys": 4, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[405000.0, 446000.0], [404000.0, 446000.0], [404000.0, 447000.0], [405000.0, 447000.0], [405000.0, 446000.0]]]}}, {"id": "2630", "type": "Feature", "properties": {"easting": 416500.0, "northing": 446500.0, "gridsq": "X416Y446", "numresp": 33, "numpeople": 77.22, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 446000.0], [416000.0, 446000.0], [416000.0, 447000.0], [417000.0, 447000.0], [417000.0, 446000.0]]]}}, {"id": "2631", "type": "Feature", "properties": {"easting": 411500.0, "northing": 447500.0, "gridsq": "X411Y447", "numresp": 39, "numpeople": 91.26, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[412000.0, 447000.0], [411000.0, 447000.0], [411000.0, 448000.0], [412000.0, 448000.0], [412000.0, 447000.0]]]}}, {"id": "2632", "type": "Feature", "properties": {"easting": 520500.0, "northing": 447500.0, "gridsq": "X520Y447", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[521000.0, 447000.0], [520000.0, 447000.0], [520000.0, 448000.0], [521000.0, 448000.0], [521000.0, 447000.0]]]}}, {"id": "2633", "type": "Feature", "properties": {"easting": 398500.0, "northing": 451500.0, "gridsq": "X398Y451", "numresp": 209, "numpeople": 489.06, "numkeys": 7, "numnonresp": 152, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[399000.0, 451000.0], [398000.0, 451000.0], [398000.0, 452000.0], [399000.0, 452000.0], [399000.0, 451000.0]]]}}, {"id": "2634", "type": "Feature", "properties": {"easting": 453500.0, "northing": 451500.0, "gridsq": "X453Y451", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[454000.0, 451000.0], [453000.0, 451000.0], [453000.0, 452000.0], [454000.0, 452000.0], [454000.0, 451000.0]]]}}, {"id": "2635", "type": "Feature", "properties": {"easting": 460500.0, "northing": 451500.0, "gridsq": "X460Y451", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 10, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 451000.0], [460000.0, 451000.0], [460000.0, 452000.0], [461000.0, 452000.0], [461000.0, 451000.0]]]}}, {"id": "2636", "type": "Feature", "properties": {"easting": 429500.0, "northing": 455500.0, "gridsq": "X429Y455", "numresp": 115, "numpeople": 269.1, "numkeys": 1, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 455000.0], [429000.0, 455000.0], [429000.0, 456000.0], [430000.0, 456000.0], [430000.0, 455000.0]]]}}, {"id": "2637", "type": "Feature", "properties": {"easting": 430500.0, "northing": 455500.0, "gridsq": "X430Y455", "numresp": 129, "numpeople": 301.86, "numkeys": 1, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 455000.0], [430000.0, 455000.0], [430000.0, 456000.0], [431000.0, 456000.0], [431000.0, 455000.0]]]}}, {"id": "2638", "type": "Feature", "properties": {"easting": 432500.0, "northing": 455500.0, "gridsq": "X432Y455", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 455000.0], [432000.0, 455000.0], [432000.0, 456000.0], [433000.0, 456000.0], [433000.0, 455000.0]]]}}, {"id": "2639", "type": "Feature", "properties": {"easting": 433500.0, "northing": 455500.0, "gridsq": "X433Y455", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 455000.0], [433000.0, 455000.0], [433000.0, 456000.0], [434000.0, 456000.0], [434000.0, 455000.0]]]}}, {"id": "2640", "type": "Feature", "properties": {"easting": 430500.0, "northing": 457500.0, "gridsq": "X430Y457", "numresp": 34, "numpeople": 79.56, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 457000.0], [430000.0, 457000.0], [430000.0, 458000.0], [431000.0, 458000.0], [431000.0, 457000.0]]]}}, {"id": "2641", "type": "Feature", "properties": {"easting": 502500.0, "northing": 457500.0, "gridsq": "X502Y457", "numresp": 8, "numpeople": 18.72, "numkeys": 3, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 457000.0], [502000.0, 457000.0], [502000.0, 458000.0], [503000.0, 458000.0], [503000.0, 457000.0]]]}}, {"id": "2642", "type": "Feature", "properties": {"easting": 347500.0, "northing": 461500.0, "gridsq": "X347Y461", "numresp": 260, "numpeople": 608.4, "numkeys": 0, "numnonresp": 107, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[348000.0, 461000.0], [347000.0, 461000.0], [347000.0, 462000.0], [348000.0, 462000.0], [348000.0, 461000.0]]]}}, {"id": "2643", "type": "Feature", "properties": {"easting": 343500.0, "northing": 464500.0, "gridsq": "X343Y464", "numresp": 110, "numpeople": 257.4, "numkeys": 1, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[344000.0, 464000.0], [343000.0, 464000.0], [343000.0, 465000.0], [344000.0, 465000.0], [344000.0, 464000.0]]]}}, {"id": "2644", "type": "Feature", "properties": {"easting": 415500.0, "northing": 465500.0, "gridsq": "X415Y465", "numresp": 108, "numpeople": 252.72, "numkeys": 1, "numnonresp": 35, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[416000.0, 465000.0], [415000.0, 465000.0], [415000.0, 466000.0], [416000.0, 466000.0], [416000.0, 465000.0]]]}}, {"id": "2645", "type": "Feature", "properties": {"easting": 351500.0, "northing": 467500.0, "gridsq": "X351Y467", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[352000.0, 467000.0], [351000.0, 467000.0], [351000.0, 468000.0], [352000.0, 468000.0], [352000.0, 467000.0]]]}}, {"id": "2646", "type": "Feature", "properties": {"easting": 517500.0, "northing": 467500.0, "gridsq": "X517Y467", "numresp": 112, "numpeople": 262.08, "numkeys": 1, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 467000.0], [517000.0, 467000.0], [517000.0, 468000.0], [518000.0, 468000.0], [518000.0, 467000.0]]]}}, {"id": "2647", "type": "Feature", "properties": {"easting": 517500.0, "northing": 468500.0, "gridsq": "X517Y468", "numresp": 103, "numpeople": 241.02, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[518000.0, 468000.0], [517000.0, 468000.0], [517000.0, 469000.0], [518000.0, 469000.0], [518000.0, 468000.0]]]}}, {"id": "2648", "type": "Feature", "properties": {"easting": 518500.0, "northing": 468500.0, "gridsq": "X518Y468", "numresp": 109, "numpeople": 255.06, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[519000.0, 468000.0], [518000.0, 468000.0], [518000.0, 469000.0], [519000.0, 469000.0], [519000.0, 468000.0]]]}}, {"id": "2649", "type": "Feature", "properties": {"easting": 431500.0, "northing": 470500.0, "gridsq": "X431Y470", "numresp": 52, "numpeople": 121.68, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 470000.0], [431000.0, 470000.0], [431000.0, 471000.0], [432000.0, 471000.0], [432000.0, 470000.0]]]}}, {"id": "2650", "type": "Feature", "properties": {"easting": 322500.0, "northing": 474500.0, "gridsq": "X322Y474", "numresp": 60, "numpeople": 140.4, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[323000.0, 474000.0], [322000.0, 474000.0], [322000.0, 475000.0], [323000.0, 475000.0], [323000.0, 474000.0]]]}}, {"id": "2651", "type": "Feature", "properties": {"easting": 321500.0, "northing": 477500.0, "gridsq": "X321Y477", "numresp": 28, "numpeople": 65.52, "numkeys": 3, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[322000.0, 477000.0], [321000.0, 477000.0], [321000.0, 478000.0], [322000.0, 478000.0], [322000.0, 477000.0]]]}}, {"id": "2652", "type": "Feature", "properties": {"easting": 328500.0, "northing": 478500.0, "gridsq": "X328Y478", "numresp": 114, "numpeople": 266.76, "numkeys": 2, "numnonresp": 70, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[329000.0, 478000.0], [328000.0, 478000.0], [328000.0, 479000.0], [329000.0, 479000.0], [329000.0, 478000.0]]]}}, {"id": "2653", "type": "Feature", "properties": {"easting": 511500.0, "northing": 480500.0, "gridsq": "X511Y480", "numresp": 78, "numpeople": 182.52, "numkeys": 2, "numnonresp": 47, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[512000.0, 480000.0], [511000.0, 480000.0], [511000.0, 481000.0], [512000.0, 481000.0], [512000.0, 480000.0]]]}}, {"id": "2654", "type": "Feature", "properties": {"easting": 349500.0, "northing": 481500.0, "gridsq": "X349Y481", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[350000.0, 481000.0], [349000.0, 481000.0], [349000.0, 482000.0], [350000.0, 482000.0], [350000.0, 481000.0]]]}}, {"id": "2655", "type": "Feature", "properties": {"easting": 503500.0, "northing": 486500.0, "gridsq": "X503Y486", "numresp": 3, "numpeople": 7.02, "numkeys": 2, "numnonresp": 7, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[504000.0, 486000.0], [503000.0, 486000.0], [503000.0, 487000.0], [504000.0, 487000.0], [504000.0, 486000.0]]]}}, {"id": "2656", "type": "Feature", "properties": {"easting": 426500.0, "northing": 488500.0, "gridsq": "X426Y488", "numresp": 12, "numpeople": 28.08, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[427000.0, 488000.0], [426000.0, 488000.0], [426000.0, 489000.0], [427000.0, 489000.0], [427000.0, 488000.0]]]}}, {"id": "2657", "type": "Feature", "properties": {"easting": 504500.0, "northing": 488500.0, "gridsq": "X504Y488", "numresp": 45, "numpeople": 105.3, "numkeys": 0, "numnonresp": 39, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[505000.0, 488000.0], [504000.0, 488000.0], [504000.0, 489000.0], [505000.0, 489000.0], [505000.0, 488000.0]]]}}, {"id": "2658", "type": "Feature", "properties": {"easting": 502500.0, "northing": 489500.0, "gridsq": "X502Y489", "numresp": 51, "numpeople": 119.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[503000.0, 489000.0], [502000.0, 489000.0], [502000.0, 490000.0], [503000.0, 490000.0], [503000.0, 489000.0]]]}}, {"id": "2659", "type": "Feature", "properties": {"easting": 437500.0, "northing": 493500.0, "gridsq": "X437Y493", "numresp": 160, "numpeople": 374.4, "numkeys": 2, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[438000.0, 493000.0], [437000.0, 493000.0], [437000.0, 494000.0], [438000.0, 494000.0], [438000.0, 493000.0]]]}}, {"id": "2660", "type": "Feature", "properties": {"easting": 436500.0, "northing": 494500.0, "gridsq": "X436Y494", "numresp": 25, "numpeople": 58.5, "numkeys": 2, "numnonresp": 47, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 494000.0], [436000.0, 494000.0], [436000.0, 495000.0], [437000.0, 495000.0], [437000.0, 494000.0]]]}}, {"id": "2661", "type": "Feature", "properties": {"easting": 340500.0, "northing": 497500.0, "gridsq": "X340Y497", "numresp": 36, "numpeople": 84.24, "numkeys": 2, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[341000.0, 497000.0], [340000.0, 497000.0], [340000.0, 498000.0], [341000.0, 498000.0], [341000.0, 497000.0]]]}}, {"id": "2662", "type": "Feature", "properties": {"easting": 337500.0, "northing": 504500.0, "gridsq": "X337Y504", "numresp": 19, "numpeople": 44.46, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[338000.0, 504000.0], [337000.0, 504000.0], [337000.0, 505000.0], [338000.0, 505000.0], [338000.0, 504000.0]]]}}, {"id": "2663", "type": "Feature", "properties": {"easting": 333500.0, "northing": 507500.0, "gridsq": "X333Y507", "numresp": 19, "numpeople": 44.46, "numkeys": 1, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[334000.0, 507000.0], [333000.0, 507000.0], [333000.0, 508000.0], [334000.0, 508000.0], [334000.0, 507000.0]]]}}, {"id": "2664", "type": "Feature", "properties": {"easting": 489500.0, "northing": 510500.0, "gridsq": "X489Y510", "numresp": 104, "numpeople": 243.36, "numkeys": 0, "numnonresp": 65, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[490000.0, 510000.0], [489000.0, 510000.0], [489000.0, 511000.0], [490000.0, 511000.0], [490000.0, 510000.0]]]}}, {"id": "2665", "type": "Feature", "properties": {"easting": 428500.0, "northing": 515500.0, "gridsq": "X428Y515", "numresp": 48, "numpeople": 112.32, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 515000.0], [428000.0, 515000.0], [428000.0, 516000.0], [429000.0, 516000.0], [429000.0, 515000.0]]]}}, {"id": "2666", "type": "Feature", "properties": {"easting": 441500.0, "northing": 515500.0, "gridsq": "X441Y515", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[442000.0, 515000.0], [441000.0, 515000.0], [441000.0, 516000.0], [442000.0, 516000.0], [442000.0, 515000.0]]]}}, {"id": "2667", "type": "Feature", "properties": {"easting": 451500.0, "northing": 515500.0, "gridsq": "X451Y515", "numresp": 24, "numpeople": 56.16, "numkeys": 4, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[452000.0, 515000.0], [451000.0, 515000.0], [451000.0, 516000.0], [452000.0, 516000.0], [452000.0, 515000.0]]]}}, {"id": "2668", "type": "Feature", "properties": {"easting": 452500.0, "northing": 515500.0, "gridsq": "X452Y515", "numresp": 113, "numpeople": 264.42, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[453000.0, 515000.0], [452000.0, 515000.0], [452000.0, 516000.0], [453000.0, 516000.0], [453000.0, 515000.0]]]}}, {"id": "2669", "type": "Feature", "properties": {"easting": 461500.0, "northing": 515500.0, "gridsq": "X461Y515", "numresp": 224, "numpeople": 524.16, "numkeys": 3, "numnonresp": 47, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[462000.0, 515000.0], [461000.0, 515000.0], [461000.0, 516000.0], [462000.0, 516000.0], [462000.0, 515000.0]]]}}, {"id": "2670", "type": "Feature", "properties": {"easting": 465500.0, "northing": 516500.0, "gridsq": "X465Y516", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[466000.0, 516000.0], [465000.0, 516000.0], [465000.0, 517000.0], [466000.0, 517000.0], [466000.0, 516000.0]]]}}, {"id": "2671", "type": "Feature", "properties": {"easting": 297500.0, "northing": 517500.0, "gridsq": "X297Y517", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[298000.0, 517000.0], [297000.0, 517000.0], [297000.0, 518000.0], [298000.0, 518000.0], [298000.0, 517000.0]]]}}, {"id": "2672", "type": "Feature", "properties": {"easting": 444500.0, "northing": 517500.0, "gridsq": "X444Y517", "numresp": 23, "numpeople": 53.82, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[445000.0, 517000.0], [444000.0, 517000.0], [444000.0, 518000.0], [445000.0, 518000.0], [445000.0, 517000.0]]]}}, {"id": "2673", "type": "Feature", "properties": {"easting": 297500.0, "northing": 518500.0, "gridsq": "X297Y518", "numresp": 70, "numpeople": 163.8, "numkeys": 1, "numnonresp": 65, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[298000.0, 518000.0], [297000.0, 518000.0], [297000.0, 519000.0], [298000.0, 519000.0], [298000.0, 518000.0]]]}}, {"id": "2674", "type": "Feature", "properties": {"easting": 444500.0, "northing": 518500.0, "gridsq": "X444Y518", "numresp": 2, "numpeople": 4.68, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[445000.0, 518000.0], [444000.0, 518000.0], [444000.0, 519000.0], [445000.0, 519000.0], [445000.0, 518000.0]]]}}, {"id": "2675", "type": "Feature", "properties": {"easting": 446500.0, "northing": 518500.0, "gridsq": "X446Y518", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[447000.0, 518000.0], [446000.0, 518000.0], [446000.0, 519000.0], [447000.0, 519000.0], [447000.0, 518000.0]]]}}, {"id": "2676", "type": "Feature", "properties": {"easting": 445500.0, "northing": 520500.0, "gridsq": "X445Y520", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[446000.0, 520000.0], [445000.0, 520000.0], [445000.0, 521000.0], [446000.0, 521000.0], [446000.0, 520000.0]]]}}, {"id": "2677", "type": "Feature", "properties": {"easting": 427500.0, "northing": 522500.0, "gridsq": "X427Y522", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 522000.0], [427000.0, 522000.0], [427000.0, 523000.0], [428000.0, 523000.0], [428000.0, 522000.0]]]}}, {"id": "2678", "type": "Feature", "properties": {"easting": 460500.0, "northing": 522500.0, "gridsq": "X460Y522", "numresp": 183, "numpeople": 428.22, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[461000.0, 522000.0], [460000.0, 522000.0], [460000.0, 523000.0], [461000.0, 523000.0], [461000.0, 522000.0]]]}}, {"id": "2679", "type": "Feature", "properties": {"easting": 326500.0, "northing": 523500.0, "gridsq": "X326Y523", "numresp": 22, "numpeople": 51.48, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[327000.0, 523000.0], [326000.0, 523000.0], [326000.0, 524000.0], [327000.0, 524000.0], [327000.0, 523000.0]]]}}, {"id": "2680", "type": "Feature", "properties": {"easting": 427500.0, "northing": 523500.0, "gridsq": "X427Y523", "numresp": 0, "numpeople": 0.0, "numkeys": 1, "numnonresp": 59, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 523000.0], [427000.0, 523000.0], [427000.0, 524000.0], [428000.0, 524000.0], [428000.0, 523000.0]]]}}, {"id": "2681", "type": "Feature", "properties": {"easting": 457500.0, "northing": 523500.0, "gridsq": "X457Y523", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[458000.0, 523000.0], [457000.0, 523000.0], [457000.0, 524000.0], [458000.0, 524000.0], [458000.0, 523000.0]]]}}, {"id": "2682", "type": "Feature", "properties": {"easting": 446500.0, "northing": 524500.0, "gridsq": "X446Y524", "numresp": 35, "numpeople": 81.9, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[447000.0, 524000.0], [446000.0, 524000.0], [446000.0, 525000.0], [447000.0, 525000.0], [447000.0, 524000.0]]]}}, {"id": "2683", "type": "Feature", "properties": {"easting": 422500.0, "northing": 525500.0, "gridsq": "X422Y525", "numresp": 7, "numpeople": 16.38, "numkeys": 2, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[423000.0, 525000.0], [422000.0, 525000.0], [422000.0, 526000.0], [423000.0, 526000.0], [423000.0, 525000.0]]]}}, {"id": "2684", "type": "Feature", "properties": {"easting": 427500.0, "northing": 525500.0, "gridsq": "X427Y525", "numresp": 4, "numpeople": 9.36, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 525000.0], [427000.0, 525000.0], [427000.0, 526000.0], [428000.0, 526000.0], [428000.0, 525000.0]]]}}, {"id": "2685", "type": "Feature", "properties": {"easting": 418500.0, "northing": 526500.0, "gridsq": "X418Y526", "numresp": 44, "numpeople": 102.96, "numkeys": 2, "numnonresp": 4, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[419000.0, 526000.0], [418000.0, 526000.0], [418000.0, 527000.0], [419000.0, 527000.0], [419000.0, 526000.0]]]}}, {"id": "2686", "type": "Feature", "properties": {"easting": 351500.0, "northing": 529500.0, "gridsq": "X351Y529", "numresp": 145, "numpeople": 339.3, "numkeys": 0, "numnonresp": 13, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[352000.0, 529000.0], [351000.0, 529000.0], [351000.0, 530000.0], [352000.0, 530000.0], [352000.0, 529000.0]]]}}, {"id": "2687", "type": "Feature", "properties": {"easting": 428500.0, "northing": 529500.0, "gridsq": "X428Y529", "numresp": 16, "numpeople": 37.44, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 529000.0], [428000.0, 529000.0], [428000.0, 530000.0], [429000.0, 530000.0], [429000.0, 529000.0]]]}}, {"id": "2688", "type": "Feature", "properties": {"easting": 312500.0, "northing": 530500.0, "gridsq": "X312Y530", "numresp": 77, "numpeople": 180.18, "numkeys": 0, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[313000.0, 530000.0], [312000.0, 530000.0], [312000.0, 531000.0], [313000.0, 531000.0], [313000.0, 530000.0]]]}}, {"id": "2689", "type": "Feature", "properties": {"easting": 351500.0, "northing": 530500.0, "gridsq": "X351Y530", "numresp": 64, "numpeople": 149.76, "numkeys": 2, "numnonresp": 64, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[352000.0, 530000.0], [351000.0, 530000.0], [351000.0, 531000.0], [352000.0, 531000.0], [352000.0, 530000.0]]]}}, {"id": "2690", "type": "Feature", "properties": {"easting": 300500.0, "northing": 531500.0, "gridsq": "X300Y531", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[301000.0, 531000.0], [300000.0, 531000.0], [300000.0, 532000.0], [301000.0, 532000.0], [301000.0, 531000.0]]]}}, {"id": "2691", "type": "Feature", "properties": {"easting": 450500.0, "northing": 532500.0, "gridsq": "X450Y532", "numresp": 46, "numpeople": 107.64, "numkeys": 1, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 532000.0], [450000.0, 532000.0], [450000.0, 533000.0], [451000.0, 533000.0], [451000.0, 532000.0]]]}}, {"id": "2692", "type": "Feature", "properties": {"easting": 302500.0, "northing": 533500.0, "gridsq": "X302Y533", "numresp": 123, "numpeople": 287.82, "numkeys": 0, "numnonresp": 2, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[303000.0, 533000.0], [302000.0, 533000.0], [302000.0, 534000.0], [303000.0, 534000.0], [303000.0, 533000.0]]]}}, {"id": "2693", "type": "Feature", "properties": {"easting": 450500.0, "northing": 533500.0, "gridsq": "X450Y533", "numresp": 101, "numpeople": 236.34, "numkeys": 0, "numnonresp": 11, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[451000.0, 533000.0], [450000.0, 533000.0], [450000.0, 534000.0], [451000.0, 534000.0], [451000.0, 533000.0]]]}}, {"id": "2694", "type": "Feature", "properties": {"easting": 430500.0, "northing": 537500.0, "gridsq": "X430Y537", "numresp": 5, "numpeople": 11.7, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 537000.0], [430000.0, 537000.0], [430000.0, 538000.0], [431000.0, 538000.0], [431000.0, 537000.0]]]}}, {"id": "2695", "type": "Feature", "properties": {"easting": 443500.0, "northing": 540500.0, "gridsq": "X443Y540", "numresp": 22, "numpeople": 51.48, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[444000.0, 540000.0], [443000.0, 540000.0], [443000.0, 541000.0], [444000.0, 541000.0], [444000.0, 540000.0]]]}}, {"id": "2696", "type": "Feature", "properties": {"easting": 427500.0, "northing": 542500.0, "gridsq": "X427Y542", "numresp": 4, "numpeople": 9.36, "numkeys": 1, "numnonresp": 29, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 542000.0], [427000.0, 542000.0], [427000.0, 543000.0], [428000.0, 543000.0], [428000.0, 542000.0]]]}}, {"id": "2697", "type": "Feature", "properties": {"easting": 430500.0, "northing": 543500.0, "gridsq": "X430Y543", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[431000.0, 543000.0], [430000.0, 543000.0], [430000.0, 544000.0], [431000.0, 544000.0], [431000.0, 543000.0]]]}}, {"id": "2698", "type": "Feature", "properties": {"easting": 416500.0, "northing": 547500.0, "gridsq": "X416Y547", "numresp": 66, "numpeople": 154.44, "numkeys": 1, "numnonresp": 45, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 547000.0], [416000.0, 547000.0], [416000.0, 548000.0], [417000.0, 548000.0], [417000.0, 547000.0]]]}}, {"id": "2699", "type": "Feature", "properties": {"easting": 408500.0, "northing": 549500.0, "gridsq": "X408Y549", "numresp": 8, "numpeople": 18.72, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[409000.0, 549000.0], [408000.0, 549000.0], [408000.0, 550000.0], [409000.0, 550000.0], [409000.0, 549000.0]]]}}, {"id": "2700", "type": "Feature", "properties": {"easting": 433500.0, "northing": 549500.0, "gridsq": "X433Y549", "numresp": 88, "numpeople": 205.92, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 549000.0], [433000.0, 549000.0], [433000.0, 550000.0], [434000.0, 550000.0], [434000.0, 549000.0]]]}}, {"id": "2701", "type": "Feature", "properties": {"easting": 434500.0, "northing": 549500.0, "gridsq": "X434Y549", "numresp": 9, "numpeople": 21.06, "numkeys": 0, "numnonresp": 25, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 549000.0], [434000.0, 549000.0], [434000.0, 550000.0], [435000.0, 550000.0], [435000.0, 549000.0]]]}}, {"id": "2702", "type": "Feature", "properties": {"easting": 426500.0, "northing": 550500.0, "gridsq": "X426Y550", "numresp": 11, "numpeople": 25.74, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[427000.0, 550000.0], [426000.0, 550000.0], [426000.0, 551000.0], [427000.0, 551000.0], [427000.0, 550000.0]]]}}, {"id": "2703", "type": "Feature", "properties": {"easting": 427500.0, "northing": 551500.0, "gridsq": "X427Y551", "numresp": 38, "numpeople": 88.92, "numkeys": 1, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 551000.0], [427000.0, 551000.0], [427000.0, 552000.0], [428000.0, 552000.0], [428000.0, 551000.0]]]}}, {"id": "2704", "type": "Feature", "properties": {"easting": 338500.0, "northing": 555500.0, "gridsq": "X338Y555", "numresp": 107, "numpeople": 250.38, "numkeys": 1, "numnonresp": 24, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[339000.0, 555000.0], [338000.0, 555000.0], [338000.0, 556000.0], [339000.0, 556000.0], [339000.0, 555000.0]]]}}, {"id": "2705", "type": "Feature", "properties": {"easting": 426500.0, "northing": 555500.0, "gridsq": "X426Y555", "numresp": 1, "numpeople": 2.34, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[427000.0, 555000.0], [426000.0, 555000.0], [426000.0, 556000.0], [427000.0, 556000.0], [427000.0, 555000.0]]]}}, {"id": "2706", "type": "Feature", "properties": {"easting": 439500.0, "northing": 555500.0, "gridsq": "X439Y555", "numresp": 21, "numpeople": 49.14, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[440000.0, 555000.0], [439000.0, 555000.0], [439000.0, 556000.0], [440000.0, 556000.0], [440000.0, 555000.0]]]}}, {"id": "2707", "type": "Feature", "properties": {"easting": 429500.0, "northing": 556500.0, "gridsq": "X429Y556", "numresp": 101, "numpeople": 236.34, "numkeys": 2, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 556000.0], [429000.0, 556000.0], [429000.0, 557000.0], [430000.0, 557000.0], [430000.0, 556000.0]]]}}, {"id": "2708", "type": "Feature", "properties": {"easting": 438500.0, "northing": 556500.0, "gridsq": "X438Y556", "numresp": 115, "numpeople": 269.1, "numkeys": 1, "numnonresp": 33, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 556000.0], [438000.0, 556000.0], [438000.0, 557000.0], [439000.0, 557000.0], [439000.0, 556000.0]]]}}, {"id": "2709", "type": "Feature", "properties": {"easting": 440500.0, "northing": 556500.0, "gridsq": "X440Y556", "numresp": 129, "numpeople": 301.86, "numkeys": 0, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[441000.0, 556000.0], [440000.0, 556000.0], [440000.0, 557000.0], [441000.0, 557000.0], [441000.0, 556000.0]]]}}, {"id": "2710", "type": "Feature", "properties": {"easting": 424500.0, "northing": 559500.0, "gridsq": "X424Y559", "numresp": 0, "numpeople": 0.0, "numkeys": 3, "numnonresp": 42, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 559000.0], [424000.0, 559000.0], [424000.0, 560000.0], [425000.0, 560000.0], [425000.0, 559000.0]]]}}, {"id": "2711", "type": "Feature", "properties": {"easting": 438500.0, "northing": 559500.0, "gridsq": "X438Y559", "numresp": 6, "numpeople": 14.04, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 559000.0], [438000.0, 559000.0], [438000.0, 560000.0], [439000.0, 560000.0], [439000.0, 559000.0]]]}}, {"id": "2712", "type": "Feature", "properties": {"easting": 417500.0, "northing": 562500.0, "gridsq": "X417Y562", "numresp": 13, "numpeople": 30.42, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[418000.0, 562000.0], [417000.0, 562000.0], [417000.0, 563000.0], [418000.0, 563000.0], [418000.0, 562000.0]]]}}, {"id": "2713", "type": "Feature", "properties": {"easting": 423500.0, "northing": 562500.0, "gridsq": "X423Y562", "numresp": 43, "numpeople": 100.62, "numkeys": 0, "numnonresp": 21, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[424000.0, 562000.0], [423000.0, 562000.0], [423000.0, 563000.0], [424000.0, 563000.0], [424000.0, 562000.0]]]}}, {"id": "2714", "type": "Feature", "properties": {"easting": 414500.0, "northing": 563500.0, "gridsq": "X414Y563", "numresp": 16, "numpeople": 37.44, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[415000.0, 563000.0], [414000.0, 563000.0], [414000.0, 564000.0], [415000.0, 564000.0], [415000.0, 563000.0]]]}}, {"id": "2715", "type": "Feature", "properties": {"easting": 418500.0, "northing": 563500.0, "gridsq": "X418Y563", "numresp": 0, "numpeople": 0.0, "numkeys": 0, "numnonresp": 26, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[419000.0, 563000.0], [418000.0, 563000.0], [418000.0, 564000.0], [419000.0, 564000.0], [419000.0, 563000.0]]]}}, {"id": "2716", "type": "Feature", "properties": {"easting": 420500.0, "northing": 563500.0, "gridsq": "X420Y563", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[421000.0, 563000.0], [420000.0, 563000.0], [420000.0, 564000.0], [421000.0, 564000.0], [421000.0, 563000.0]]]}}, {"id": "2717", "type": "Feature", "properties": {"easting": 393500.0, "northing": 564500.0, "gridsq": "X393Y564", "numresp": 54, "numpeople": 126.36, "numkeys": 0, "numnonresp": 60, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[394000.0, 564000.0], [393000.0, 564000.0], [393000.0, 565000.0], [394000.0, 565000.0], [394000.0, 564000.0]]]}}, {"id": "2718", "type": "Feature", "properties": {"easting": 424500.0, "northing": 564500.0, "gridsq": "X424Y564", "numresp": 35, "numpeople": 81.9, "numkeys": 0, "numnonresp": 22, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 564000.0], [424000.0, 564000.0], [424000.0, 565000.0], [425000.0, 565000.0], [425000.0, 564000.0]]]}}, {"id": "2719", "type": "Feature", "properties": {"easting": 425500.0, "northing": 564500.0, "gridsq": "X425Y564", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 9, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[426000.0, 564000.0], [425000.0, 564000.0], [425000.0, 565000.0], [426000.0, 565000.0], [426000.0, 564000.0]]]}}, {"id": "2720", "type": "Feature", "properties": {"easting": 429500.0, "northing": 564500.0, "gridsq": "X429Y564", "numresp": 109, "numpeople": 255.06, "numkeys": 1, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 564000.0], [429000.0, 564000.0], [429000.0, 565000.0], [430000.0, 565000.0], [430000.0, 564000.0]]]}}, {"id": "2721", "type": "Feature", "properties": {"easting": 436500.0, "northing": 564500.0, "gridsq": "X436Y564", "numresp": 112, "numpeople": 262.08, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[437000.0, 564000.0], [436000.0, 564000.0], [436000.0, 565000.0], [437000.0, 565000.0], [437000.0, 564000.0]]]}}, {"id": "2722", "type": "Feature", "properties": {"easting": 416500.0, "northing": 565500.0, "gridsq": "X416Y565", "numresp": 5, "numpeople": 11.7, "numkeys": 1, "numnonresp": 59, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[417000.0, 565000.0], [416000.0, 565000.0], [416000.0, 566000.0], [417000.0, 566000.0], [417000.0, 565000.0]]]}}, {"id": "2723", "type": "Feature", "properties": {"easting": 424500.0, "northing": 565500.0, "gridsq": "X424Y565", "numresp": 4, "numpeople": 9.36, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[425000.0, 565000.0], [424000.0, 565000.0], [424000.0, 566000.0], [425000.0, 566000.0], [425000.0, 565000.0]]]}}, {"id": "2724", "type": "Feature", "properties": {"easting": 425500.0, "northing": 565500.0, "gridsq": "X425Y565", "numresp": 28, "numpeople": 65.52, "numkeys": 2, "numnonresp": 6, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[426000.0, 565000.0], [425000.0, 565000.0], [425000.0, 566000.0], [426000.0, 566000.0], [426000.0, 565000.0]]]}}, {"id": "2725", "type": "Feature", "properties": {"easting": 435500.0, "northing": 565500.0, "gridsq": "X435Y565", "numresp": 25, "numpeople": 58.5, "numkeys": 3, "numnonresp": 14, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[436000.0, 565000.0], [435000.0, 565000.0], [435000.0, 566000.0], [436000.0, 566000.0], [436000.0, 565000.0]]]}}, {"id": "2726", "type": "Feature", "properties": {"easting": 438500.0, "northing": 565500.0, "gridsq": "X438Y565", "numresp": 60, "numpeople": 140.4, "numkeys": 2, "numnonresp": 5, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[439000.0, 565000.0], [438000.0, 565000.0], [438000.0, 566000.0], [439000.0, 566000.0], [439000.0, 565000.0]]]}}, {"id": "2727", "type": "Feature", "properties": {"easting": 425500.0, "northing": 566500.0, "gridsq": "X425Y566", "numresp": 48, "numpeople": 112.32, "numkeys": 2, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[426000.0, 566000.0], [425000.0, 566000.0], [425000.0, 567000.0], [426000.0, 567000.0], [426000.0, 566000.0]]]}}, {"id": "2728", "type": "Feature", "properties": {"easting": 427500.0, "northing": 567500.0, "gridsq": "X427Y567", "numresp": 46, "numpeople": 107.64, "numkeys": 2, "numnonresp": 1, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 567000.0], [427000.0, 567000.0], [427000.0, 568000.0], [428000.0, 568000.0], [428000.0, 567000.0]]]}}, {"id": "2729", "type": "Feature", "properties": {"easting": 433500.0, "northing": 567500.0, "gridsq": "X433Y567", "numresp": 81, "numpeople": 189.54, "numkeys": 4, "numnonresp": 8, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 567000.0], [433000.0, 567000.0], [433000.0, 568000.0], [434000.0, 568000.0], [434000.0, 567000.0]]]}}, {"id": "2730", "type": "Feature", "properties": {"easting": 423500.0, "northing": 569500.0, "gridsq": "X423Y569", "numresp": 94, "numpeople": 219.96, "numkeys": 0, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[424000.0, 569000.0], [423000.0, 569000.0], [423000.0, 570000.0], [424000.0, 570000.0], [424000.0, 569000.0]]]}}, {"id": "2731", "type": "Feature", "properties": {"easting": 428500.0, "northing": 569500.0, "gridsq": "X428Y569", "numresp": 18, "numpeople": 42.12, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[429000.0, 569000.0], [428000.0, 569000.0], [428000.0, 570000.0], [429000.0, 570000.0], [429000.0, 569000.0]]]}}, {"id": "2732", "type": "Feature", "properties": {"easting": 432500.0, "northing": 570500.0, "gridsq": "X432Y570", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[433000.0, 570000.0], [432000.0, 570000.0], [432000.0, 571000.0], [433000.0, 571000.0], [433000.0, 570000.0]]]}}, {"id": "2733", "type": "Feature", "properties": {"easting": 433500.0, "northing": 571500.0, "gridsq": "X433Y571", "numresp": 27, "numpeople": 63.18, "numkeys": 3, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[434000.0, 571000.0], [433000.0, 571000.0], [433000.0, 572000.0], [434000.0, 572000.0], [434000.0, 571000.0]]]}}, {"id": "2734", "type": "Feature", "properties": {"easting": 434500.0, "northing": 571500.0, "gridsq": "X434Y571", "numresp": 131, "numpeople": 306.54, "numkeys": 1, "numnonresp": 3, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[435000.0, 571000.0], [434000.0, 571000.0], [434000.0, 572000.0], [435000.0, 572000.0], [435000.0, 571000.0]]]}}, {"id": "2735", "type": "Feature", "properties": {"easting": 427500.0, "northing": 578500.0, "gridsq": "X427Y578", "numresp": 90, "numpeople": 210.6, "numkeys": 1, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[428000.0, 578000.0], [427000.0, 578000.0], [427000.0, 579000.0], [428000.0, 579000.0], [428000.0, 578000.0]]]}}, {"id": "2736", "type": "Feature", "properties": {"easting": 429500.0, "northing": 579500.0, "gridsq": "X429Y579", "numresp": 41, "numpeople": 95.94, "numkeys": 1, "numnonresp": 30, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[430000.0, 579000.0], [429000.0, 579000.0], [429000.0, 580000.0], [430000.0, 580000.0], [430000.0, 579000.0]]]}}, {"id": "2737", "type": "Feature", "properties": {"easting": 431500.0, "northing": 581500.0, "gridsq": "X431Y581", "numresp": 96, "numpeople": 224.64, "numkeys": 1, "numnonresp": 67, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[432000.0, 581000.0], [431000.0, 581000.0], [431000.0, 582000.0], [432000.0, 582000.0], [432000.0, 581000.0]]]}}, {"id": "2738", "type": "Feature", "properties": {"easting": 422500.0, "northing": 587500.0, "gridsq": "X422Y587", "numresp": 48, "numpeople": 112.32, "numkeys": 2, "numnonresp": 0, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[423000.0, 587000.0], [422000.0, 587000.0], [422000.0, 588000.0], [423000.0, 588000.0], [423000.0, 587000.0]]]}}, {"id": "2739", "type": "Feature", "properties": {"easting": 398500.0, "northing": 652500.0, "gridsq": "X398Y652", "numresp": 0, "numpeople": 0.0, "numkeys": 2, "numnonresp": 15, "st_area_sh": 1000000.0, "st_perimet": 4000.0}, "geometry": {"type": "Polygon", "coordinates": [[[399000.0, 652000.0], [398000.0, 652000.0], [398000.0, 653000.0], [399000.0, 653000.0], [399000.0, 652000.0]]]}}], "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:EPSG::27700"}}}
import pandas as pd
import geopandas as gpd
import folium
from geopy.geocoders import Nominatim
# Sample mortgage data with fictive values and real addresses
mortgages = pd.DataFrame({
"address": [
"1 Town Square, Barking, IG11 7LU", # Barking and Dagenham
"St Ives Road, Maidenhead, SL6 1RF", # Windsor and Maidenhead
"Cardiff Bay, Cardiff, CF10" # Cardiff
],
"loan_amount": [250000, 400000, 175000],
"property_value": [300000, 500000, 200000]
})
# Geocode addresses
geocoder = Nominatim(user_agent="your_app_name")
for index, row in mortgages.iterrows():
location = geocoder.geocode(row["address"])
if location:
mortgages.loc[index, "latitude"] = location.latitude
mortgages.loc[index, "longitude"] = location.longitude
else:
mortgages.loc[index, "latitude"] = None
mortgages.loc[index, "longitude"] = None
# Create a map centered around the mean latitude and longitude
m = folium.Map(location=[mortgages["latitude"].mean(), mortgages["longitude"].mean()], zoom_start=10)
# Add markers for each property
for _, row in mortgages.iterrows():
if not pd.isnull(row["latitude"]) and not pd.isnull(row["longitude"]):
folium.Marker(
location=[row["latitude"], row["longitude"]],
popup=f"Loan Amount: {row['loan_amount']}, Property Value: {row['property_value']}"
).add_to(m)
# Display the map
m
import pandas as pd
import geopandas as gpd
import folium
from geopy.geocoders import Nominatim
import random
# Sample mortgage data with fictive values and real addresses
mortgages = pd.DataFrame({
"address": [
"1 Town Square, Barking, IG11 7LU", # Barking and Dagenham
"St Ives Road, Maidenhead, SL6 1RF", # Windsor and Maidenhead
"Cardiff Bay, Cardiff, CF10" # Cardiff
],
"loan_amount": [250000, 400000, 175000],
"property_value": [300000, 500000, 200000]
})
# Geocode addresses
geocoder = Nominatim(user_agent="your_app_name")
for index, row in mortgages.iterrows():
location = geocoder.geocode(row["address"])
if location:
mortgages.loc[index, "latitude"] = location.latitude
mortgages.loc[index, "longitude"] = location.longitude
else:
mortgages.loc[index, "latitude"] = None
mortgages.loc[index, "longitude"] = None
# Example function to simulate flood risk
def simulate_flood_risk(property_type, proximity_to_water):
"""
Simulates flood risk for a property.
Args:
property_type (str): Type of property (e.g., residential, commercial).
proximity_to_water (float): Distance to water bodies (e.g., rivers, lakes).
Returns:
float: Estimated flood risk score (0 to 1).
"""
# Assume higher risk for properties close to water
base_risk = 0.3 if property_type == "residential" else 0.5
risk_increase = proximity_to_water * 0.02
# Add some randomness
random_factor = random.uniform(-0.05, 0.05)
# Calculate total risk
total_risk = base_risk + risk_increase + random_factor
return min(max(total_risk, 0), 1) # Ensure risk score is between 0 and 1
# Add simulated flood risk column to mortgages DataFrame
mortgages["flood_risk"] = [simulate_flood_risk("residential", random.random()) for _ in range(len(mortgages))]
# Create a map centered around the mean latitude and longitude
m = folium.Map(location=[mortgages["latitude"].mean(), mortgages["longitude"].mean()], zoom_start=10)
# Add markers for each property with popup showing loan amount, property value, and flood risk
for _, row in mortgages.iterrows():
if not pd.isnull(row["latitude"]) and not pd.isnull(row["longitude"]):
folium.Marker(
location=[row["latitude"], row["longitude"]],
popup=f"Loan Amount: {row['loan_amount']}, Property Value: {row['property_value']}, Flood Risk: {row['flood_risk']:.2f}"
).add_to(m)
# Display the map
m
import pandas as pd
import geopandas as gpd
import folium
from geopy.geocoders import Nominatim
import random
# Sample mortgage data with fictive values and real addresses
mortgages = pd.DataFrame({
"address": [
"1 Town Square, Barking, IG11 7LU", # Barking and Dagenham
"St Ives Road, Maidenhead, SL6 1RF", # Windsor and Maidenhead
"Cardiff Bay, Cardiff, CF10" # Cardiff
],
"loan_amount": [250000, 400000, 175000],
"property_value": [300000, 500000, 200000]
})
# Geocode addresses
geocoder = Nominatim(user_agent="your_app_name")
for index, row in mortgages.iterrows():
location = geocoder.geocode(row["address"])
if location:
mortgages.loc[index, "latitude"] = location.latitude
mortgages.loc[index, "longitude"] = location.longitude
else:
mortgages.loc[index, "latitude"] = None
mortgages.loc[index, "longitude"] = None
# Example function to simulate flood risk
def simulate_flood_risk(property_type, proximity_to_water):
"""
Simulates flood risk for a property.
Args:
property_type (str): Type of property (e.g., residential, commercial).
proximity_to_water (float): Distance to water bodies (e.g., rivers, lakes).
Returns:
float: Estimated flood risk score (0 to 1).
"""
# Assume higher risk for properties close to water
base_risk = 0.3 if property_type == "residential" else 0.5
risk_increase = proximity_to_water * 0.02
# Add some randomness
random_factor = random.uniform(-0.05, 0.05)
# Calculate total risk
total_risk = base_risk + risk_increase + random_factor
return min(max(total_risk, 0), 1) # Ensure risk score is between 0 and 1
# Add simulated flood risk column to mortgages DataFrame
mortgages["flood_risk"] = [simulate_flood_risk("residential", random.random()) for _ in range(len(mortgages))]
def is_loan_at_risk(flood_risk):
"""
Determines if a loan is at risk based on flood risk score.
Args:
flood_risk (float): Flood risk score (0 to 1).
Returns:
str: Risk assessment ('Low risk', 'Moderate risk', or 'High risk').
"""
if flood_risk < 0.3:
return 'Low risk'
elif flood_risk < 0.7:
return 'Moderate risk'
else:
return 'High risk'
# Add loan risk column to mortgages DataFrame
mortgages["loan_risk"] = mortgages["flood_risk"].apply(is_loan_at_risk)
# Print the risk assessment for each property
for _, row in mortgages.iterrows():
print(f"Address: {row['address']}, Loan Risk: {row['loan_risk']}")
# Create a map centered around the mean latitude and longitude
m = folium.Map(location=[mortgages["latitude"].mean(), mortgages["longitude"].mean()], zoom_start=10)
# Add markers for each property with popup showing loan amount, property value, flood risk, and loan risk assessment
for _, row in mortgages.iterrows():
if not pd.isnull(row["latitude"]) and not pd.isnull(row["longitude"]):
folium.Marker(
location=[row["latitude"], row["longitude"]],
popup=f"Loan Amount: {row['loan_amount']}, Property Value: {row['property_value']}, Flood Risk: {row['flood_risk']:.2f}, Loan Risk: {row['loan_risk']}"
).add_to(m)
# Display the map
m
Address: 1 Town Square, Barking, IG11 7LU, Loan Risk: Low risk Address: St Ives Road, Maidenhead, SL6 1RF, Loan Risk: Low risk Address: Cardiff Bay, Cardiff, CF10, Loan Risk: Low risk
# Example function to calculate loss given default
def calculate_loss_given_default(loan_amount, flood_risk_score):
"""
Calculates the potential loss given default on the loan.
Args:
loan_amount (float): The amount of the loan.
flood_risk_score (float): The flood risk score associated with the property.
Returns:
float: Estimated loss given default (as a percentage of the loan amount).
"""
# Define the base loss rate and adjust based on flood risk
base_loss_rate = 0.05 # 5% base loss rate for loans
risk_adjustment = flood_risk_score * 0.1 # Adjust by 10% for each 0.1 increase in flood risk score
# Calculate the total loss given default
loss_given_default = base_loss_rate + risk_adjustment
return min(max(loss_given_default, 0), 1) # Ensure loss rate is between 0 and 1
# Example usage
loan_amount = 250000
flood_risk_score = 0.8 # Example flood risk score for a property
loss_given_default = calculate_loss_given_default(loan_amount, flood_risk_score)
print(f"Loss given default: {loss_given_default:.2%}")
Loss given default: 13.00%
# Example function to calculate loss given default
def calculate_loss_given_default(loan_amount, flood_risk_score):
"""
Calculates the potential loss given default on the loan.
Args:
loan_amount (float): The amount of the loan.
flood_risk_score (float): The flood risk score associated with the property.
Returns:
float: Estimated loss given default (as a percentage of the loan amount).
"""
# Define the base loss rate and adjust based on flood risk
base_loss_rate = 0.05 # 5% base loss rate for loans
risk_adjustment = flood_risk_score * 0.1 # Adjust by 10% for each 0.1 increase in flood risk score
# Calculate the total loss given default
loss_given_default = base_loss_rate + risk_adjustment
return min(max(loss_given_default, 0), 1) # Ensure loss rate is between 0 and 1
# Example usage
loan_amount = 250000
flood_risk_score = 0.8 # Example flood risk score for a property
loss_given_default = calculate_loss_given_default(loan_amount, flood_risk_score)
print(f"Loss given default: {loss_given_default:.2%}")
Loss given default: 13.00%
Revised code with manual input
import pandas as pd
import geopandas as gpd
import folium
from geopy.geocoders import Nominatim
import random
# Sample mortgage data with fictive values and real addresses
mortgages = pd.DataFrame({
"address": [
"1 Town Square, Barking, IG11 7LU", # Barking and Dagenham
"St Ives Road, Maidenhead, SL6 1RF", # Windsor and Maidenhead
"Cardiff Bay, Cardiff, CF10" # Cardiff
],
"loan_amount": [250000, 400000, 175000],
"property_value": [300000, 500000, 200000]
})
# Input manual values for address, loan amount, and property value
address = input("Enter the address: ")
loan_amount = float(input("Enter the loan amount: "))
property_value = float(input("Enter the property value: "))
# Append input values to the mortgages DataFrame using pd.concat
new_mortgage = pd.DataFrame({"address": [address], "loan_amount": [loan_amount], "property_value": [property_value]})
mortgages = pd.concat([mortgages, new_mortgage], ignore_index=True)
# Geocode addresses
geocoder = Nominatim(user_agent="your_app_name")
for index, row in mortgages.iterrows():
location = geocoder.geocode(row["address"])
if location:
mortgages.loc[index, "latitude"] = location.latitude
mortgages.loc[index, "longitude"] = location.longitude
else:
mortgages.loc[index, "latitude"] = None
mortgages.loc[index, "longitude"] = None
# Example function to simulate flood risk
def simulate_flood_risk(property_type, proximity_to_water):
"""
Simulates flood risk for a property.
Args:
property_type (str): Type of property (e.g., residential, commercial).
proximity_to_water (float): Distance to water bodies (e.g., rivers, lakes).
Returns:
float: Estimated flood risk score (0 to 1).
"""
# Assume higher risk for properties close to water
base_risk = 0.3 if property_type == "residential" else 0.5
risk_increase = proximity_to_water * 0.02
# Add some randomness
random_factor = random.uniform(-0.05, 0.05)
# Calculate total risk
total_risk = base_risk + risk_increase + random_factor
return min(max(total_risk, 0), 1) # Ensure risk score is between 0 and 1
# Add simulated flood risk column to mortgages DataFrame
mortgages["flood_risk"] = [simulate_flood_risk("residential", random.random()) for _ in range(len(mortgages))]
def is_loan_at_risk(flood_risk):
"""
Determines if a loan is at risk based on flood risk score.
Args:
flood_risk (float): Flood risk score (0 to 1).
Returns:
str: Risk assessment ('Low risk', 'Moderate risk', or 'High risk').
"""
if flood_risk < 0.3:
return 'Low risk'
elif flood_risk < 0.7:
return 'Moderate risk'
else:
return 'High risk'
# Add loan risk column to mortgages DataFrame
mortgages["loan_risk"] = mortgages["flood_risk"].apply(is_loan_at_risk)
# Calculate Loss Given Default (LGD)
mortgages["LGD"] = 1 - (mortgages["property_value"] - mortgages["loan_amount"]) / mortgages["property_value"]
# Print the risk assessment and LGD for each property
for _, row in mortgages.iterrows():
print(f"Address: {row['address']}, Loan Risk: {row['loan_risk']}, LGD: {row['LGD']:.2f}")
# Create a map centered around the mean latitude and longitude
m = folium.Map(location=[mortgages["latitude"].mean(), mortgages["longitude"].mean()], zoom_start=10)
# Add markers for each property with popup showing loan amount, property value, flood risk, loan risk assessment, and LGD
for _, row in mortgages.iterrows():
if not pd.isnull(row["latitude"]) and not pd.isnull(row["longitude"]):
folium.Marker(
location=[row["latitude"], row["longitude"]],
popup=f"Loan Amount: {row['loan_amount']}, Property Value: {row['property_value']}, Flood Risk: {row['flood_risk']:.2f}, Loan Risk: {row['loan_risk']}, LGD: {row['LGD']:.2f}"
).add_to(m)
# Display the map
m
Enter the address: 89, Osmaston Road, Birmingham, B17 0TH Enter the loan amount: 120000 Enter the property value: 89000 Address: 1 Town Square, Barking, IG11 7LU, Loan Risk: Moderate risk, LGD: 0.83 Address: St Ives Road, Maidenhead, SL6 1RF, Loan Risk: Moderate risk, LGD: 0.80 Address: Cardiff Bay, Cardiff, CF10, Loan Risk: Low risk, LGD: 0.88 Address: 89, Osmaston Road, Birmingham, B17 0TH, Loan Risk: Low risk, LGD: 1.35
##Results
1. Sample Data: Includes three properties with varying loan amounts and property values. 2. Geocoding Outcomes: Successfully geocoded addresses provided precise latitude and longitude for mapping.
###Graphical Representation
1. Flood Risk Distribution: Histogram showing the distribution of simulated flood risk scores. 2. Loan Risk Categories: Pie chart illustrating the proportion of properties in each risk category.
###Analysis
1. Spatial Visualization: Interactive map displaying properties, flood risk scores, and shapefile overlays. 2. Risk Assessment Insights: Identified high-risk areas and properties, enabling targeted risk mitigation strategies.
##Conclusion
This project demonstrates the efficacy of using geospatial data for mortgage risk assessment, specifically focusing on flood risk. By integrating geocoding and shapefile data, I provided a detailed analysis that enhances traditional risk evaluation methods. The results highlight the importance of considering environmental risks in mortgage assessments.
##Recommendations
1. Further Data Integration: Incorporate additional environmental risk factors such as fire or earthquake risks. 2. Model Refinement: Enhance the flood risk simulation model with more granular data on water bodies and historical flood events. 3. Stakeholder Engagement: Collaborate with financial institutions to validate the model and refine it based on real-world feedback. 4. This approach not only aids in better risk management but also aligns financial decision-making with sustainability and resilience goals.
pip install pandoc
Requirement already satisfied: pandoc in c:\users\hp\anaconda3\lib\site-packages (2.3) Requirement already satisfied: plumbum in c:\users\hp\anaconda3\lib\site-packages (from pandoc) (1.8.2) Requirement already satisfied: ply in c:\users\hp\anaconda3\lib\site-packages (from pandoc) (3.11) Requirement already satisfied: pywin32 in c:\users\hp\anaconda3\lib\site-packages (from plumbum->pandoc) (305.1) Note: you may need to restart the kernel to use updated packages.